Nachgezogener Arbeitsstand des Homelabs: - neue host_vars (k3s-*, gluster-*, docmost, paperless, kometa, thelounge, satisfactory, wolfstack-vm) - neue Rollen/Playbooks (net_watchdog, patchmon-agent, tc_ratelimit, sops-age, rotate-ssh-key, dns-doh, remove-postfix, checkrr-deploy) - diverse Rollen-Updates (base, borg, dns_resolver, frp_client, hawser, nvidia) Ausgeklammert (bleiben uncommittet): host_vars/docmost/vars.yml (Klartext-Token -> sollte vault-konform via vault_* referenziert werden). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
18 lines
428 B
YAML
18 lines
428 B
YAML
---
|
|
- name: arp-scan installieren
|
|
ansible.builtin.apt:
|
|
name: arp-scan
|
|
state: present
|
|
|
|
- name: Watchdog Script deployen
|
|
ansible.builtin.template:
|
|
src: net-watchdog.sh.j2
|
|
dest: /usr/local/bin/net-watchdog.sh
|
|
mode: "0755"
|
|
|
|
- name: Cronjob einrichten
|
|
ansible.builtin.cron:
|
|
name: "net-watchdog"
|
|
minute: "{{ watchdog_cron_interval }}"
|
|
job: "/usr/local/bin/net-watchdog.sh --quiet"
|
|
user: root
|