feat: ansible checkpoint
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
- name: Install Avahi Daemon
|
||||
ansible.builtin.apt:
|
||||
pkg:
|
||||
- avahi-daemon
|
||||
state: present
|
||||
|
||||
- name: Enable Avahi Daemon Service
|
||||
ansible.builtin.service:
|
||||
name: avahi-daemon
|
||||
state: started
|
||||
enabled: true
|
||||
|
||||
- name: Copy Avahi SSH service configuration
|
||||
ansible.builtin.copy:
|
||||
src: ssh.service
|
||||
dest: /etc/avahi/services/ssh.service
|
||||
mode: "644"
|
||||
notify:
|
||||
- Restart Avahi Daemon
|
||||
Reference in New Issue
Block a user