New fixups and added Zerotier config

This commit is contained in:
2024-02-09 17:42:07 -06:00
parent 58dc2e4585
commit aa68070871
5 changed files with 84 additions and 1 deletions
+9 -1
View File
@@ -36,7 +36,7 @@
permanent: yes
state: enabled
- name: Modify nsswitch file for mdns lookups
- name: Modify nsswitch file for mdns lookups
become: yes
become_method: sudo
ansible.builtin.lineinfile:
@@ -60,3 +60,11 @@
name: avahi-daemon
state: restarted
- name: Enable Zerotier
become: yes
become_method: sudo
ansible.builtin.systemd_service:
name: zerotier-one
state: started
enabled: yes
when: (zerotier_network is defined) and (zerotier_network|length>0)