Ajout des variables pour enbarr (la borne Wi-Fi) et garreg-mach (le Switch)

This commit is contained in:
VC
2024-07-05 11:53:05 +02:00
parent ea06e638d3
commit 910c9ba9ae
2 changed files with 14 additions and 0 deletions

View File

@@ -15,3 +15,12 @@
src: files/remote.conf
dest: /etc/rsyslog.d/remote.conf
notify: restart rsyslog
- name: insert hosts into /etc/hosts
lineinfile:
path: /etc/hosts
state: present
insertbefore: '^# --- BEGIN PVE ---$'
line: "{{ item.address }} {{ item.name }}"
loop: "{{ pretty_named_hosts }}"
notify: restart rsyslog