Update to 2022-03-07 16:00

This commit is contained in:
Daniel Berteaud
2022-03-07 16:00:05 +01:00
parent be6bc20783
commit 1065df387c
99 changed files with 761 additions and 303 deletions

View File

@@ -8,31 +8,40 @@
- libarray-diff-perl
- libdata-validate-ip-perl
- liblogger-syslog-perl
tags: pve
- name: Deploy Online.net integration script
copy: src=pve-online dest=/usr/local/bin/pve-online mode=755
tags: pve
- name: Deploy Online.net integration conf
template: src=pve-online.conf.j2 dest=/etc/pve-online.conf mode=600
tags: pve
- name: Create hook directory on local storage
file: path=/var/lib/vz/snippets state=directory
tags: pve
- name: Deploy Online hook
copy: src=online_hook.pl dest=/var/lib/vz/snippets/online_hook.pl mode=755
tags: pve
- name: Ensure /etc/systemd/system/ exists
file: path=/etc/systemd/system/ state=directory
tags: pve
- name: Disable pve-online-gre service
service: name=pve-online-gre state=stopped enabled=False
failed_when: False
tags: pve
- name: Remove pve-online-gre service unit
file: path=/etc/systemd/system/pve-online-gre.service state=absent
register: pve_gre_unit
tags: pve
- name: Reload systemd
systemd: daemon_reload=True
when: pve_gre_unit.changed
tags: pve