Skip to content
Snippets Groups Projects
Commit 8f882a0f authored by Jörg Sachse's avatar Jörg Sachse
Browse files

fix: indentation

parent 34bdf956
Branches
No related tags found
No related merge requests found
Pipeline #6074 failed
...@@ -5,40 +5,40 @@ ...@@ -5,40 +5,40 @@
- name: configure additional package repositories for Debian - name: configure additional package repositories for Debian
when: ansible_os_family == "Debian" when: ansible_os_family == "Debian"
block: block:
- name: install GPG - name: install GPG
ansible.builtin.apt: ansible.builtin.apt:
name: "gnupg" name: "gnupg"
state: latest state: latest
update_cache: true update_cache: true
become: true become: true
- name: modify package repo config - name: modify package repo config
ansible.builtin.deb822_repository: ansible.builtin.deb822_repository:
architectures: "amd64" architectures: "amd64"
components: "{{ item.components | default('main') }}" components: "{{ item.components | default('main') }}"
enabled: "{{ item.enabled | default(true) }}" enabled: "{{ item.enabled | default(true) }}"
name: "{{ item.name }}" name: "{{ item.name }}"
pdiffs: true pdiffs: true
signed_by: "{{ item.signed_by }}" signed_by: "{{ item.signed_by }}"
suites: "{{ item.suites | default(ansible_lsb.codename) }}" suites: "{{ item.suites | default(ansible_lsb.codename) }}"
uris: "{{ item.uris }}" uris: "{{ item.uris }}"
loop: loop:
# PC @steidl with local Debian repo for SubAp tests # PC @steidl with local Debian repo for SubAp tests
- name: "bdv141" - name: "bdv141"
signed_by: "http://bdv141.slub-dresden.de/deb-repository/pub.gpg.key" signed_by: "http://bdv141.slub-dresden.de/deb-repository/pub.gpg.key"
suites: "lza-testing" suites: "lza-testing"
uris: "http://bdv141.slub-dresden.de/deb-repository" uris: "http://bdv141.slub-dresden.de/deb-repository"
# on-prem Debian Repo # on-prem Debian Repo
- name: "slub" - name: "slub"
signed_by: "https://sdvdebianrepo.slub-dresden.de/deb-repository/pub.gpg.key" signed_by: "https://sdvdebianrepo.slub-dresden.de/deb-repository/pub.gpg.key"
uris: "https://sdvdebianrepo.slub-dresden.de/deb-repository" uris: "https://sdvdebianrepo.slub-dresden.de/deb-repository"
# add non-free repos to be able to install libmath-random-perl from official Debian public repo # add non-free repos to be able to install libmath-random-perl from official Debian public repo
- name: "debian" - name: "debian"
components: ["main", "non-free"] components: ["main", "non-free"]
signed_by: "/usr/share/keyrings/debian-archive-keyring.gpg" signed_by: "/usr/share/keyrings/debian-archive-keyring.gpg"
suites: ["{{ ansible_lsb.codename }}", "{{ ansible_lsb.codename }}-updates"] suites: ["{{ ansible_lsb.codename }}", "{{ ansible_lsb.codename }}-updates"]
uris: "http://deb.debian.org/debian" uris: "http://deb.debian.org/debian"
notify: update package cache notify: update package cache
become: true become: true
- name: configure additional package repositories for RedHat - name: configure additional package repositories for RedHat
when: ansible_os_family == "RedHat" when: ansible_os_family == "RedHat"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment