16 lines
448 B
YAML
16 lines
448 B
YAML
- name: "Add hosts Proxmox style"
|
|
template:
|
|
src: hosts.j2
|
|
dest: /etc/hosts
|
|
- name: "Add Proxmox VE 6 GPG key"
|
|
get_url:
|
|
url: http://download.proxmox.com/debian/proxmox-ve-release-6.x.gpg
|
|
dest: /etc/apt/trusted.gpg.d/
|
|
- name: "Add Proxmox VE 6 Repo"
|
|
apt_repository:
|
|
repo: "deb http://download.proxmox.com/debian/pve buster pve-no-subscription"
|
|
state: present
|
|
- name: "Apt upgrade"
|
|
apt:
|
|
upgrade: dist
|