Skip to content

Instantly share code, notes, and snippets.

@arbabnazar
Created June 6, 2018 12:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save arbabnazar/6c9f333f285fcd1ac0ccb684bb1f47fe to your computer and use it in GitHub Desktop.
Save arbabnazar/6c9f333f285fcd1ac0ccb684bb1f47fe to your computer and use it in GitHub Desktop.
---
- hosts: all
gather_facts: no
become: yes
tasks:
- name: Install python27 for Ansible
raw: bash -c "test -e /usr/bin/python || (apt -qqy update && apt install -qqy python-minimal)"
register: output
changed_when: output.stdout != ""
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment