mirror of
https://github.com/fscotto/infra.git
synced 2026-09-27 19:03:47 +00:00
* Add Atlas media and storage services * Document Atlas backend phase one and WireGuard deployment * Enable Atlas NAS management and document bootstrap workflow * Harden Atlas network, SSH, firewall, and sharing * Rotate Ansible Vault secrets * Allow configurable Aegis SSH users and authorized keys * Manage Aegis SSH authorized key fragments * Manage SSH authorized key fragments for infrastructure hosts * Harden Rocky storage and sharing configuration * Verify WireGuard handshakes and restore Podman networking
11 lines
273 B
YAML
11 lines
273 B
YAML
---
|
|
- name: Restart WireGuard interface
|
|
tags: [wireguard, services]
|
|
ansible.builtin.systemd:
|
|
name: "wg-quick@{{ wireguard_interface }}.service"
|
|
state: restarted
|
|
daemon_reload: true
|
|
when:
|
|
- wireguard_overlay_enabled | bool
|
|
- not ansible_check_mode
|