Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision
  • archivematica_support
  • extended_maintenance
  • fix_autocomplete
  • master
4 results

Target

Select target project
  • digital-preservation/ansible_lza_ingest
1 result
Select Git revision
  • archivematica_support
  • extended_maintenance
  • fix_autocomplete
  • master
4 results
Show changes
Commits on Source (2)
......@@ -6,7 +6,7 @@ RUN adduser lza;
RUN apt-get update; \
apt-get install -y --no-install-recommends gnupg wget git python3 ansible sudo; \
wget -O - http://sdvdebianrepo.slub-dresden.de/deb-repository/pub.gpg.key | apt-key add - ; \
echo "deb http://sdvdebianrepo.slub-dresden.de/deb-repository bullseye main" > /etc/apt/sources.list.d/slub.list; \
echo "deb http://sdvdebianrepo.slub-dresden.de/deb-repository bookworm main" > /etc/apt/sources.list.d/slub.list; \
apt-get update;
#apt-get -y --no-install-recommends install python3-pip python3-virtualenv;
......
......@@ -16,15 +16,13 @@
url: "{{ item }}"
state: absent
loop:
- "http://bdv141.slub-dresden.de/deb-repository/pub.gpg.key"
- "https://sdvdebianrepo.slub-dresden.de/deb-repository/pub.gpg.key"
- name: add repo URL to sources.list
ansible.builtin.apt_repository:
repo: "{{ item }}"
state: absent
loop:
- "deb http://bdv141.slub-dresden.de/deb-repository lza-testing main"
- "deb https://sdvdebianrepo.slub-dresden.de/deb-repository bullseye main"
- "deb https://sdvdebianrepo.slub-dresden.de/deb-repository bookworm main"
- name: modify package repo config
ansible.builtin.deb822_repository:
architectures: "amd64"
......