Skip to content

Instantly share code, notes, and snippets.

@Zooloo2014
Created February 15, 2019 12:59
Show Gist options
  • Save Zooloo2014/4b70adc9a1c2396f1f4ef95920e8a077 to your computer and use it in GitHub Desktop.
Save Zooloo2014/4b70adc9a1c2396f1f4ef95920e8a077 to your computer and use it in GitHub Desktop.
---
# tasks file for common
- name: install Python 2.x
raw: which python || sudo apt-get update && sudo apt-get install -qq -y python-simplejson
register: python_check
changed_when: not python_check.stdout is search('/usr/bin/python')
- name: install pip
apt:
name: python-pip
state: present
update_cache: yes
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment