|
@@ -14,38 +14,64 @@
|
|
|
yum:
|
|
|
pkg: libselinux-python
|
|
|
state: present
|
|
|
+ when: ansible_pkg_mgr == "yum"
|
|
|
+
|
|
|
+- name: Ensure libselinux-python is installed
|
|
|
+ dnf:
|
|
|
+ pkg: libselinux-python
|
|
|
+ state: present
|
|
|
+ when: ansible_pkg_mgr == "dnf"
|
|
|
|
|
|
- name: Create any additional repos that are defined
|
|
|
template:
|
|
|
src: yum_repo.j2
|
|
|
dest: /etc/yum.repos.d/openshift_additional.repo
|
|
|
when: openshift_additional_repos | length > 0
|
|
|
- notify: refresh package cache
|
|
|
+ notify: refresh yum cache
|
|
|
|
|
|
- name: Remove the additional repos if no longer defined
|
|
|
file:
|
|
|
dest: /etc/yum.repos.d/openshift_additional.repo
|
|
|
state: absent
|
|
|
when: openshift_additional_repos | length == 0
|
|
|
- notify: refresh package cache
|
|
|
+ notify: refresh yum cache
|
|
|
|
|
|
-- name: Remove any yum repo files for other deployment types
|
|
|
+- name: Remove any yum repo files for other deployment types RHEL/CentOS
|
|
|
file:
|
|
|
path: "/etc/yum.repos.d/{{ item | basename }}"
|
|
|
state: absent
|
|
|
with_fileglob:
|
|
|
- '*/repos/*'
|
|
|
- when: not (item | search("/files/" ~ openshift_deployment_type ~ "/repos"))
|
|
|
- notify: refresh package cache
|
|
|
+ when: not (item | search("/files/" ~ openshift_deployment_type ~ "/repos")) and
|
|
|
+ (ansible_os_family == "RedHat" and ansible_distribution != "Fedora")
|
|
|
+ notify: refresh yum cache
|
|
|
+
|
|
|
+- name: Remove any yum repo files for other deployment types Fedora
|
|
|
+ file:
|
|
|
+ path: "/etc/yum.repos.d/{{ item | basename }}"
|
|
|
+ state: absent
|
|
|
+ with_fileglob:
|
|
|
+ - '*/repos/*'
|
|
|
+ when: not (item | search("/files/fedora-" ~ openshift_deployment_type ~ "/repos")) and
|
|
|
+ (ansible_distribution == "Fedora")
|
|
|
+ notify: refresh dnf cache
|
|
|
|
|
|
- name: Configure gpg keys if needed
|
|
|
copy: src={{ item }} dest=/etc/pki/rpm-gpg/
|
|
|
with_fileglob:
|
|
|
- "{{ openshift_deployment_type }}/gpg_keys/*"
|
|
|
- notify: refresh package cache
|
|
|
+ notify: refresh yum cache
|
|
|
|
|
|
-- name: Configure yum repositories
|
|
|
+- name: Configure yum repositories RHEL/CentOS
|
|
|
copy: src={{ item }} dest=/etc/yum.repos.d/
|
|
|
with_fileglob:
|
|
|
- "{{ openshift_deployment_type }}/repos/*"
|
|
|
- notify: refresh package cache
|
|
|
+ notify: refresh yum cache
|
|
|
+ when: (ansible_os_family == "RedHat" and ansible_distribution != "Fedora")
|
|
|
+
|
|
|
+- name: Configure yum repositories Fedora
|
|
|
+ copy: src={{ item }} dest=/etc/yum.repos.d/
|
|
|
+ with_fileglob:
|
|
|
+ - "fedora-{{ openshift_deployment_type }}/repos/*"
|
|
|
+ notify: refresh dnf cache
|
|
|
+ when: (ansible_distribution == "Fedora")
|