Skip to content
Snippets Groups Projects
Commit a9ad9aa5 authored by nimrod's avatar nimrod
Browse files

- Add bootstraping Python installation.

parent 05e36a9f
No related branches found
No related tags found
No related merge requests found
--- ---
- hosts: all - hosts: all
gather_facts: False
tasks: tasks:
- name: Update APT sources
raw: DEBIAN_FRONTEND=noninteractive apt-get update
changed_when: False
- name: APT install Python
raw: DEBIAN_FRONTEND=noninteractive apt-get install -qy python2.7 python
register: debian_bootstrap_install_python
changed_when: "'Unpacking' in debian_bootstrap_install_python.stdout"
- name: APT install - name: APT install
apt: apt:
name: name:
...@@ -8,7 +18,6 @@ ...@@ -8,7 +18,6 @@
- nginx - nginx
- openssl - openssl
state: present state: present
update_cache: yes
- name: Collectd facts - name: Collectd facts
collectd_facts: collectd_facts:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment