ansible-roles/jenkins/tasks/main.yml

43 lines
1 KiB
YAML

---
- name: Add jenkins GPG key
apt_key:
# url: https://jenkins-ci.org/debian/jenkins-ci.org.key
data: "{{ lookup('file', 'jenkins.key') }}"
- name: Check if Squid is present
stat:
path: /etc/squid3/whitelist-custom.conf
register: _squid3_whitelist
check_mode: no
- name: Append jenkins repositories to Squid whitelist
lineinfile:
name: /etc/squid3/whitelist-custom.conf
line: "{{ item }}"
with_items:
- "http://pkg.jenkins-ci.org/.*"
- "http://mirrors.jenkins.io/.*"
- "http://jenkins.mirror.isppower.de/.*"
- "http://ftp.icm.edu.pl/.*"
notify: Reload Squid
when: _squid3_whitelist.stat.exists
- meta: flush_handlers
- name: Add jenkins APT repository
apt_repository:
repo: deb http://pkg.jenkins-ci.org/debian-stable binary/
filename: jenkins.list
update_cache: yes
- name: Install Jenkins
apt:
name: jenkins
- name: Change Jenkins port
replace:
name: /etc/default/jenkins
regexp: "^HTTP_PORT=.*$"
replace: "HTTP_PORT=8081"
notify: Restart Jenkins