mirror of
https://github.com/iiab/iiab.git
synced 2025-02-13 03:32:12 +00:00
53 lines
1.8 KiB
YAML
53 lines
1.8 KiB
YAML
- name: Create a user for avahi (debuntu)
|
|
user:
|
|
name: avahi
|
|
createhome: no
|
|
shell: /bin/false
|
|
when: is_debuntu
|
|
|
|
- name: Install avahi announce config file /etc/avahi/services/schoolserver.service
|
|
template:
|
|
src: roles/network/templates/avahi/schoolserver.service # Invoked by 1-prep (so full path needed)
|
|
dest: /etc/avahi/services/schoolserver.service
|
|
owner: avahi
|
|
group: avahi
|
|
mode: 0640
|
|
#when: 'gui_wan == True'
|
|
when: ports_externally_visible|int >= 2
|
|
# Where "2" means "ssh + http-or-https (for Admin Console's box.lan/admin too)"
|
|
# SEE ~18 line explanation in box near:
|
|
# https://github.com/iiab/iiab/blob/master/roles/network/templates/gateway/iiab-gen-iptables#L3-L20
|
|
# IF >= 2, Admin Console $gui_port from 0-init determines which port (http-or-https) is opened here:
|
|
# https://github.com/iiab/iiab/blob/master/roles/network/templates/gateway/iiab-gen-iptables#L133-L138
|
|
|
|
- name: Find avahi_ver for clean copy of ssh.service (not debuntu)
|
|
shell: "ls /usr/share/doc/ | grep avahi | head -n1"
|
|
register: avahi_ver
|
|
ignore_errors: True
|
|
changed_when: False
|
|
# when: not is_debuntu # would cause failures 6 lines below
|
|
|
|
- name: Grab a clean copy of ssh.service (not debuntu)
|
|
copy:
|
|
src: '/usr/share/doc/{{ avahi_ver.stdout }}/ssh.service'
|
|
dest: /etc/avahi/services/
|
|
when: avahi_ver.stdout != "" and not is_debuntu
|
|
|
|
- name: Grab a clean copy of ssh.service (debuntu)
|
|
copy:
|
|
src: /usr/share/doc/avahi-daemon/examples/ssh.service
|
|
dest: /etc/avahi/services/
|
|
when: is_debuntu
|
|
|
|
- name: Set ssh port for avahi
|
|
lineinfile:
|
|
dest: /etc/avahi/services/ssh.service
|
|
regexp: '</port>$'
|
|
line: ' <port>{{ sshd_port }}</port>'
|
|
state: present
|
|
backrefs: yes
|
|
|
|
- name: Enable avahi service
|
|
service:
|
|
name: avahi-daemon
|
|
enabled: yes
|