You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible/roles/proxmox/tasks/main.yml

20 lines
621 B
YAML

---
- name: Remove entreprise proxmox repository
apt_repository:
repo: "deb https://enterprise.proxmox.com/debian/pve {{ ansible_facts['lsb']['codename'] }} pve-enterprise"
state: absent
- name: Add non subscription proxmox repository
apt_repository:
repo: "deb [arch=amd64] http://download.proxmox.com/debian/pve {{ ansible_facts['lsb']['codename'] }} pve-no-subscription"
filename: pve-no-subscription
state: present
- name: Remove No Subscription Message
replace:
path: /usr/share/perl5/PVE/API2/Subscription.pm
regexp: 'NotFound'
replace: 'Active'
notify: Restart pveproxy