Makes installation of Ansible optional (default: no) and installs additional python libraries
This commit is contained in:
parent
2953f200a1
commit
2a27db4ba8
3 changed files with 16 additions and 4 deletions
|
|
@ -32,6 +32,8 @@
|
|||
vars:
|
||||
packages:
|
||||
- python-pip
|
||||
- python-setuptools
|
||||
- python-virtualenv
|
||||
- htop
|
||||
- tmux
|
||||
become: yes
|
||||
|
|
@ -44,6 +46,9 @@
|
|||
#update_cache: yes
|
||||
vars:
|
||||
packages:
|
||||
- python-pip
|
||||
- python-setuptools
|
||||
- python-virtualenv
|
||||
- apt-transport-https
|
||||
- htop
|
||||
- tmux
|
||||
|
|
@ -52,4 +57,5 @@
|
|||
|
||||
- name: Install Ansible
|
||||
pip:
|
||||
name: ansible=={{ ensure_ansible_version }}
|
||||
name: ansible=={{ ensure_ansible_version }}
|
||||
when: enable_ansible
|
||||
Loading…
Add table
Add a link
Reference in a new issue