small refactor
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 0s

This commit is contained in:
hogweed1
2025-11-17 03:15:31 +10:00
parent 03d9cd36bf
commit 87d1f7c267

View File

@@ -5,25 +5,25 @@
tasks: tasks:
- ansible.builtin.apt_repository: - ansible.builtin.apt_repository:
repo: 'deb https://nexus.guaranteedstruggle.host/repository/generic-deb-debian-org/ bookworm main non-free-firmware' # Replace with your desired repository repo: 'deb https://nexus.guaranteedstruggle.host/repository/generic-deb-debian-org/ {{ ansible_distribution_release }} main non-free-firmware' # Replace with your desired repository
state: present state: present
#filename: custom-repo # Optional: specify a filename for the .list file #filename: custom-repo # Optional: specify a filename for the .list file
- ansible.builtin.apt_repository: - ansible.builtin.apt_repository:
repo: 'deb-src https://nexus.guaranteedstruggle.host/repository/generic-deb-debian-org/ bookworm main non-free-firmware' # Replace with your desired repository repo: 'deb-src https://nexus.guaranteedstruggle.host/repository/generic-deb-debian-org/ {{ ansible_distribution_release }} main non-free-firmware' # Replace with your desired repository
state: present state: present
- ansible.builtin.apt_repository: - ansible.builtin.apt_repository:
repo: 'deb https://nexus.guaranteedstruggle.host/repository/generic-security-debian/ bookworm-security main non-free-firmware' # Replace with your desired repository repo: 'deb https://nexus.guaranteedstruggle.host/repository/generic-security-debian/ {{ ansible_distribution_release }}-security main non-free-firmware' # Replace with your desired repository
state: present state: present
- ansible.builtin.apt_repository: - ansible.builtin.apt_repository:
repo: 'deb-src https://nexus.guaranteedstruggle.host/repository/generic-security-debian/ bookworm-security main non-free-firmware' # Replace with your desired repository repo: 'deb-src https://nexus.guaranteedstruggle.host/repository/generic-security-debian/ bookworm-security main non-free-firmware' # Replace with your desired repository
state: present state: present
- ansible.builtin.apt_repository: - ansible.builtin.apt_repository:
repo: 'deb https://nexus.guaranteedstruggle.host/repository/generic-deb-debian-org/ bookworm-updates main non-free-firmware' # Replace with your desired repository repo: 'deb https://nexus.guaranteedstruggle.host/repository/generic-deb-debian-org/ {{ ansible_distribution_release }}-updates main non-free-firmware' # Replace with your desired repository
state: present state: present
- ansible.builtin.apt_repository: - ansible.builtin.apt_repository:
repo: 'deb-src https://nexus.guaranteedstruggle.host/repository/generic-deb-debian-org/ bookworm-updates main non-free-firmware' # Replace with your desired repository repo: 'deb-src https://nexus.guaranteedstruggle.host/repository/generic-deb-debian-org/ {{ ansible_distribution_release }}-updates main non-free-firmware' # Replace with your desired repository
state: present state: present
# - name: Disable an existing APT repository (by commenting out its entry) # - name: Disable an existing APT repository (by commenting out its entry)