mirror of
https://git.lapiole.org/dani/ansible-roles.git
synced 2025-04-22 21:23:23 +02:00
18 lines
469 B
YAML
18 lines
469 B
YAML
![]() |
---
|
||
|
|
||
|
- name: Install PBS
|
||
|
apt:
|
||
|
name:
|
||
|
- proxmox-backup-server
|
||
|
policy_rc_d: 101 # Prevent the daemon from starting automatically after install
|
||
|
tags: pbs
|
||
|
|
||
|
- name: Install dehydrated hook
|
||
|
template: src=dehydrated_hook.sh.j2 dest=/etc/dehydrated/hooks_deploy_cert.d/pbs.sh mode=755
|
||
|
tags: pbs
|
||
|
|
||
|
- name: Remove registration nag
|
||
|
patch: src=remove_nag.patch dest=/usr/share/javascript/proxmox-widget-toolkit/proxmoxlib.js
|
||
|
ignore_errors: True
|
||
|
tags: pbs
|