|
|
|
@ -125,11 +125,11 @@
|
|
|
|
- users
|
|
|
|
- users
|
|
|
|
- config
|
|
|
|
- config
|
|
|
|
|
|
|
|
|
|
|
|
- name: "Install common apt-dependencies"
|
|
|
|
- name: "Install apt-dependencies for {{ inventory_hostname }}"
|
|
|
|
apt:
|
|
|
|
apt:
|
|
|
|
name: "{{ item }}"
|
|
|
|
name: "{{ item }}"
|
|
|
|
state: 'present'
|
|
|
|
state: 'present'
|
|
|
|
loop: "{{ common_apt_dependencies }}"
|
|
|
|
loop: "{{ common_apt_dependencies + additional_apt_dependencies | default([]) }}"
|
|
|
|
when: ansible_distribution == "Ubuntu"
|
|
|
|
when: ansible_distribution == "Ubuntu"
|
|
|
|
tags:
|
|
|
|
tags:
|
|
|
|
- install
|
|
|
|
- install
|
|
|
|
@ -139,7 +139,7 @@
|
|
|
|
name: "{{ item }}"
|
|
|
|
name: "{{ item }}"
|
|
|
|
state: present
|
|
|
|
state: present
|
|
|
|
become: True
|
|
|
|
become: True
|
|
|
|
loop: "{{ common_pip_dependencies }}"
|
|
|
|
loop: "{{ common_pip_dependencies + additional_pip_dependencies | default([]) }}"
|
|
|
|
tags:
|
|
|
|
tags:
|
|
|
|
- install
|
|
|
|
- install
|
|
|
|
|
|
|
|
|
|
|
|
|