Commit fe45c3ca by Feanil Patel

Add the ability to install extra system packages.

parent db1db2ad
...@@ -68,3 +68,6 @@ jenkins_debian_pkgs: ...@@ -68,3 +68,6 @@ jenkins_debian_pkgs:
- maven - maven
- daemon - daemon
- python-pycurl - python-pycurl
# Extra packages need for a specific jenkins instance.
JENKINS_EXTRA_PKGS: []
...@@ -7,6 +7,13 @@ ...@@ -7,6 +7,13 @@
tags: tags:
- jenkins - jenkins
- name: jenkins_master | install jenkins extra system packages
apt:
pkg={{','.join(JENKINS_EXTRA_PKGS)}}
state=present update_cache=yes
tags:
- jenkins
- name: jenkins_master | create jenkins group - name: jenkins_master | create jenkins group
group: name={{ jenkins_group }} state=present group: name={{ jenkins_group }} state=present
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment