diff --git a/roles/lemonldap_ng/files/logos/sentry.png b/roles/lemonldap_ng/files/logos/sentry.png new file mode 100644 index 0000000..7b08a14 Binary files /dev/null and b/roles/lemonldap_ng/files/logos/sentry.png differ diff --git a/roles/repo_base/tasks/base_CentOS8.yml b/roles/repo_base/tasks/base_CentOS8.yml index 7bb9d7e..9d2c3a0 100644 --- a/roles/repo_base/tasks/base_CentOS8.yml +++ b/roles/repo_base/tasks/base_CentOS8.yml @@ -1,30 +1,44 @@ --- - name: Configure base repositories yum_repository: - file: CentOS-{{ item.repo }} - description: "Centos - {{ item.repo }}" - name: "{{ item.repo }}" + file: CentOS-Linux-{{ item.name }} + description: "Centos - {{ item.name }}" + name: "{{ item.name | lower }}" baseurl: http://mirror.centos.org/$contentdir/$releasever/{{ item.repo }}/$basearch/os/ gpgcheck: True gpgkey: file:///etc/pki/rpm-gpg/RPM-GPG-KEY-centosofficial enabled: "{{ item.enabled | default(True) }}" loop: - - repo: BaseOS - - repo: AppStream - - repo: PowerTools - - repo: extras - - repo: cr + - name: BaseOS + repo: BaseOS + - name: AppStream + repo: AppStream + - name: PowerTools + repo: PowerTools + - name: Extras + repo: extras + - name: ContinuousRelease + repo: cr enabled: False - - repo: centosplus + - name: Plus + repo: centosplus enabled: False - - repo: fasttrack + - name: FastTrack + repo: fasttrack enabled: False tags: repo - name: Remove Base file file: path=/etc/yum.repos.d/{{ item }}.repo state=absent loop: - - CentOS-Base # Replaced with CentOS-BaseOS - - CentOS-CR # Replaced with CentOS-cr - - CentOS-Extras # Replaced with CentOS-extras + - CentOS-Base # Replaced with CentOS-BaseOS + - CentOS-CR # Replaced with CentOS-cr + - CentOS-Extras # Replaced with CentOS-extras + - CentOS-BaseOS # Replaced with CentOS-Linux-BaseOS + - CentOS-AppStream # Replaced with CentOS-Linux-AppStream + - CentOS-PowerTools # Replaced with CentOS-Linux-PowerTools + - CentOS-centosplus # Replaced with CentOS-Linux-Plus + - CentOS-cr # Replaced with CentOS-Linux-ContinuousRelease + - CentOS-extras # Replaced with CentOS-Linux-Extras + - CentOS-fasttrack # Replaced with CentOS-Linux-FastTrack tags: repo