Establish clean homelab infrastructure baseline
Reorganize the brownfield repository, remove retired and generated artifacts, harden ignore rules, and record the GitOps/IaC redesign.
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
---
|
||||
- name: restart winbind
|
||||
ansible.builtin.systemd:
|
||||
name: winbind
|
||||
state: restarted
|
||||
when: not ansible_check_mode # unit only exists after the package install (skipped under --check)
|
||||
|
||||
- name: restart smbd
|
||||
ansible.builtin.systemd:
|
||||
name: smbd
|
||||
state: restarted
|
||||
|
||||
- name: restart nmbd
|
||||
ansible.builtin.systemd:
|
||||
name: nmbd
|
||||
state: restarted
|
||||
failed_when: false # nmbd may be masked/absent on some setups
|
||||
|
||||
- name: restart systemd-resolved
|
||||
ansible.builtin.systemd:
|
||||
name: systemd-resolved
|
||||
state: restarted
|
||||
Reference in New Issue
Block a user