system packages for each host
This commit is contained in:
parent
c930ae7d85
commit
a29288aef4
3 changed files with 38 additions and 12 deletions
|
@ -44,7 +44,10 @@
|
|||
when: item not in current_plugin_list.stdout_lines
|
||||
notify: safe-restart jenkins and wait
|
||||
|
||||
# For convenience, we concatenate two lists of packages :
|
||||
# - jenkins_plugins_system_dependency
|
||||
# - jenkins_plugins_system_dependency_supp
|
||||
- name: Install system packages needed by Jenkins plugins
|
||||
apt:
|
||||
name: "{{ jenkins_plugins_system_dependency }}"
|
||||
name: "{{ jenkins_plugins_system_dependency | union(jenkins_plugins_system_dependency_supp | default([])) }}"
|
||||
state: present
|
||||
|
|
Reference in a new issue