mg
181da3c38a
keepass vars playbook jenkins java jenkins in inventory Co-authored-by: Michael Grote <michael.grote@posteo.de> Reviewed-on: mg/ansible#80 Co-Authored-By: mg <mg@noreply.git.mgrote.net> Co-Committed-By: mg <mg@noreply.git.mgrote.net>
45 lines
1.3 KiB
YAML
45 lines
1.3 KiB
YAML
---
|
|
- name: Ensure dependencies are installed.
|
|
package:
|
|
name:
|
|
- curl
|
|
- initscripts
|
|
- "{{ 'libselinux-python' if ansible_python['version']['major'] < 3 else 'python3-libselinux' }}"
|
|
state: present
|
|
|
|
- name: Ensure Jenkins repo is installed.
|
|
get_url:
|
|
url: "{{ jenkins_repo_url }}"
|
|
dest: /etc/yum.repos.d/jenkins.repo
|
|
when: jenkins_repo_url | default(false)
|
|
|
|
- name: Add Jenkins repo GPG key.
|
|
rpm_key:
|
|
state: present
|
|
key: "{{ jenkins_repo_key_url }}"
|
|
when: jenkins_repo_url | default(false)
|
|
|
|
- name: Download specific Jenkins version.
|
|
get_url:
|
|
url: "{{ jenkins_pkg_url }}/jenkins-{{ jenkins_version }}-1.1.noarch.rpm"
|
|
dest: "/tmp/jenkins-{{ jenkins_version }}-1.1.noarch.rpm"
|
|
when: jenkins_version is defined
|
|
|
|
- name: Check if we downloaded a specific version of Jenkins.
|
|
stat:
|
|
path: "/tmp/jenkins-{{ jenkins_version }}-1.1.noarch.rpm"
|
|
register: specific_version
|
|
when: jenkins_version is defined
|
|
|
|
- name: Install our specific version of Jenkins.
|
|
package:
|
|
name: "/tmp/jenkins-{{ jenkins_version }}-1.1.noarch.rpm"
|
|
state: present
|
|
when: jenkins_version is defined and specific_version.stat.exists
|
|
notify: configure default users
|
|
|
|
- name: Ensure Jenkins is installed.
|
|
package:
|
|
name: jenkins
|
|
state: "{{ jenkins_package_state }}"
|
|
notify: configure default users
|