├── .gitignore ├── .travis.yml ├── COPYING ├── MANIFEST ├── README.md ├── ansible-shell ├── requirements.txt ├── setup.cfg ├── setup.py └── tests └── localhost /.gitignore: -------------------------------------------------------------------------------- 1 | /ansible_shell.egg-info 2 | venv 3 | 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominis/ansible-shell/HEAD/.travis.yml -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominis/ansible-shell/HEAD/COPYING -------------------------------------------------------------------------------- /MANIFEST: -------------------------------------------------------------------------------- 1 | # file GENERATED by distutils, do NOT edit 2 | ansible-shell 3 | setup.py 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominis/ansible-shell/HEAD/README.md -------------------------------------------------------------------------------- /ansible-shell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominis/ansible-shell/HEAD/ansible-shell -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | ansible >= 1.9 2 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominis/ansible-shell/HEAD/setup.py -------------------------------------------------------------------------------- /tests/localhost: -------------------------------------------------------------------------------- 1 | localhost ansible_connection=local 2 | --------------------------------------------------------------------------------