-
-
Notifications
You must be signed in to change notification settings - Fork 154
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove enterprise repos before adding new repos, closes #290
* Every removal would trigger "apt update" with the remaining (inaccessible) repos, add an extra update_cache: false. * https://enterprise.proxmox.com/debian/ceph-quincy is configured on a fresh Proxmox 8.x install.
- Loading branch information
Showing
2 changed files
with
15 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
- name: Remove automatically installed PVE Enterprise repo configuration | ||
ansible.builtin.apt_repository: | ||
repo: "{{ item }}" | ||
filename: pve-enterprise | ||
state: absent | ||
update_cache: false | ||
with_items: | ||
- "deb https://enterprise.proxmox.com/debian {{ ansible_distribution_release }} pve-enterprise" | ||
- "deb https://enterprise.proxmox.com/debian/pve {{ ansible_distribution_release }} pve-enterprise" | ||
- "deb https://enterprise.proxmox.com/debian/ceph-quincy {{ ansible_distribution_release }} enterprise" |