You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
372 B
16 lines
372 B
3 years ago
|
---
|
||
|
|
||
|
- name: Add PBS repo key
|
||
|
apt_key:
|
||
|
url: http://download.proxmox.com/debian/proxmox-ve-release-6.x.gpg
|
||
|
environment:
|
||
|
https_proxy: "{{ system_proxy | default('') }}"
|
||
|
tags: repo
|
||
|
|
||
|
- name: Add PBS repo
|
||
|
apt_repository:
|
||
|
repo: deb http://download.proxmox.com/debian/pbs {{ ansible_distribution_release }} pbs-no-subscription
|
||
|
filename: pbs
|
||
|
tags: repo
|
||
|
|