├── .gitignore ├── .travis.yml ├── .yamllint ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── ansible.cfg ├── defaults └── main.yml ├── handlers └── main.yml ├── meta └── main.yml ├── molecule ├── default │ ├── create.yml │ ├── destroy.yml │ ├── molecule.yml │ └── prepare.yml ├── elcapitan.sh ├── highsierra.sh ├── mojave.sh ├── sierra.sh ├── unset.sh └── yosemite.sh ├── tasks └── main.yml ├── tests ├── inventory ├── playbook.yml ├── test-requirements.txt ├── test_default.py └── version_check.py └── vars └── main.yml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotweiser/ansible-osx-command-line-tools/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotweiser/ansible-osx-command-line-tools/HEAD/.travis.yml -------------------------------------------------------------------------------- /.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotweiser/ansible-osx-command-line-tools/HEAD/.yamllint -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotweiser/ansible-osx-command-line-tools/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotweiser/ansible-osx-command-line-tools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotweiser/ansible-osx-command-line-tools/HEAD/README.md -------------------------------------------------------------------------------- /ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotweiser/ansible-osx-command-line-tools/HEAD/ansible.cfg -------------------------------------------------------------------------------- /defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotweiser/ansible-osx-command-line-tools/HEAD/defaults/main.yml -------------------------------------------------------------------------------- /handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotweiser/ansible-osx-command-line-tools/HEAD/handlers/main.yml -------------------------------------------------------------------------------- /meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotweiser/ansible-osx-command-line-tools/HEAD/meta/main.yml -------------------------------------------------------------------------------- /molecule/default/create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotweiser/ansible-osx-command-line-tools/HEAD/molecule/default/create.yml -------------------------------------------------------------------------------- /molecule/default/destroy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotweiser/ansible-osx-command-line-tools/HEAD/molecule/default/destroy.yml -------------------------------------------------------------------------------- /molecule/default/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotweiser/ansible-osx-command-line-tools/HEAD/molecule/default/molecule.yml -------------------------------------------------------------------------------- /molecule/default/prepare.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotweiser/ansible-osx-command-line-tools/HEAD/molecule/default/prepare.yml -------------------------------------------------------------------------------- /molecule/elcapitan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotweiser/ansible-osx-command-line-tools/HEAD/molecule/elcapitan.sh -------------------------------------------------------------------------------- /molecule/highsierra.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotweiser/ansible-osx-command-line-tools/HEAD/molecule/highsierra.sh -------------------------------------------------------------------------------- /molecule/mojave.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotweiser/ansible-osx-command-line-tools/HEAD/molecule/mojave.sh -------------------------------------------------------------------------------- /molecule/sierra.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotweiser/ansible-osx-command-line-tools/HEAD/molecule/sierra.sh -------------------------------------------------------------------------------- /molecule/unset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotweiser/ansible-osx-command-line-tools/HEAD/molecule/unset.sh -------------------------------------------------------------------------------- /molecule/yosemite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotweiser/ansible-osx-command-line-tools/HEAD/molecule/yosemite.sh -------------------------------------------------------------------------------- /tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotweiser/ansible-osx-command-line-tools/HEAD/tasks/main.yml -------------------------------------------------------------------------------- /tests/inventory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotweiser/ansible-osx-command-line-tools/HEAD/tests/inventory -------------------------------------------------------------------------------- /tests/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotweiser/ansible-osx-command-line-tools/HEAD/tests/playbook.yml -------------------------------------------------------------------------------- /tests/test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotweiser/ansible-osx-command-line-tools/HEAD/tests/test-requirements.txt -------------------------------------------------------------------------------- /tests/test_default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotweiser/ansible-osx-command-line-tools/HEAD/tests/test_default.py -------------------------------------------------------------------------------- /tests/version_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotweiser/ansible-osx-command-line-tools/HEAD/tests/version_check.py -------------------------------------------------------------------------------- /vars/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotweiser/ansible-osx-command-line-tools/HEAD/vars/main.yml --------------------------------------------------------------------------------