Created
July 6, 2016 11:40
-
-
Save nuada/aba98897d5c93ee122b9e10b127ab946 to your computer and use it in GitHub Desktop.
Playbook demonstrating simple workaround if target system lacks Python
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| - hosts: all | |
| gather_facts: no | |
| become: yes | |
| pre_tasks: | |
| - name: install python | |
| raw: sudo apt-get install -y -qq python-minimal | |
| roles: | |
| - some_role |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment