Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rulai-jianfang/db2eb9df36ca1c1c7b4e47a4aafb58bd to your computer and use it in GitHub Desktop.
Save rulai-jianfang/db2eb9df36ca1c1c7b4e47a4aafb58bd to your computer and use it in GitHub Desktop.
Get Ansible to work on bare Ubuntu 16.04 without python 2.7
# Add this snippet to the top of your playbook.
# It will install python2 if missing (but checks first so no expensive repeated apt updates)
# gwillem@gmail.com
- hosts: all
gather_facts: False
tasks:
- name: install python 2
raw: test -e /usr/bin/python || (apt -y update && apt install -y python-minimal)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment