You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
285 B
9 lines
285 B
3 years ago
|
---
|
||
|
- name: linode-preflight | Install Python
|
||
|
raw: test -e /usr/bin/python || (sudo apt-get -y update && sudo apt-get install -y python2-minimal)
|
||
|
register: common__pyout
|
||
|
become: yes
|
||
|
changed_when:
|
||
|
- False
|
||
|
- common__pyout.stdout != ""
|
||
|
- common__pyout.stderr != "\r\n"
|