Skip to content

Instantly share code, notes, and snippets.

@gwillem
Created June 16, 2016 21:59
Show Gist options
  • Save gwillem/4ba393dceb55e5ae276a87300f6b8e6f to your computer and use it in GitHub Desktop.
Save gwillem/4ba393dceb55e5ae276a87300f6b8e6f to your computer and use it in GitHub Desktop.

Revisions

  1. gwillem created this gist Jun 16, 2016.
    10 changes: 10 additions & 0 deletions ansible-bootstrap-ubuntu-16.04.yml
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,10 @@
    # Add this snippet to the top of your playbook.
    # It will install python2 if missing (but checks first so no expensive repeated apt updates)
    # [email protected]

    - hosts: all
    gather_facts: False

    tasks:
    - name: install python 2
    raw: test -e /usr/bin/python || (apt -y update && apt install -y python-minimal)