gitextract_af2umfnz/ ├── .gitignore ├── .travis.yml ├── .yamllint.yml ├── LICENSE ├── README.md ├── defaults/ │ ├── darwin-macosx.yml │ ├── debian-ubuntu.yml │ ├── debian.yml │ ├── main.yml │ └── redhat.yml ├── handlers/ │ └── main.yml ├── meta/ │ └── main.yml ├── requirements.yml ├── tasks/ │ ├── check_environment.yml │ ├── darwin/ │ │ └── macosx.yml │ ├── debug.yml │ ├── installation/ │ │ ├── debian/ │ │ │ └── main.yml │ │ └── redhat/ │ │ └── main.yml │ └── main.yml ├── tests/ │ ├── Vagrantfile │ ├── ansible.cfg │ ├── boxes.yml │ ├── log/ │ │ └── .gitkeep │ ├── plugins/ │ │ └── callback/ │ │ └── idempotence.py │ ├── requirements.txt │ ├── setup.sh │ ├── tasks/ │ │ └── main.yml │ ├── test.yml │ ├── test_checkmode.sh │ ├── test_idempotence.sh │ ├── travis.sh │ └── vagrant.sh └── tox.ini