mirror of
https://github.com/iiab/iiab.git
synced 2025-02-13 11:42:08 +00:00
With NetworkManager active, systemd-networkd/networkd-dispatcher are used for br0/ap0 support but the hooks were not being installed on the first pass through network as systemd_networkd_active was not detected when ansibled stated.
90 lines
3.2 KiB
YAML
90 lines
3.2 KiB
YAML
- name: Disable hostapd when not using ap0 and wifi gateway present, or no WiFi hardware present or support not detected
|
|
set_fact:
|
|
hostapd_enabled: False
|
|
when: (not wifi_up_down and discovered_wireless_iface == iiab_wan_iface) or discovered_wireless_iface == "none" or not can_be_ap
|
|
|
|
- name: Disable the Access Point 'hostapd' service
|
|
systemd:
|
|
name: hostapd
|
|
enabled: no
|
|
when: not hostapd_enabled
|
|
|
|
- name: Detect current Wifi channel
|
|
shell: iw {{ discovered_wireless_iface }} info | grep channel | cut -d' ' -f2
|
|
register: current_client_channel
|
|
when: discovered_wireless_iface != "none"
|
|
|
|
- name: Setting WiFi channel to {{ current_client_channel.stdout }}
|
|
set_fact:
|
|
host_channel: "{{ current_client_channel.stdout }}"
|
|
when: current_client_channel.stdout is defined and current_client_channel.stdout != "" and current_client_channel.stdout|int <= 13
|
|
|
|
- name: Generate new random mac address for ap0
|
|
shell: tr -dc A-F0-9 < /dev/urandom | head -c 10 | sed -r 's/(..)/\1:/g;s/:$//;s/^/02:/'
|
|
register: ap0_mac
|
|
when: can_be_ap
|
|
|
|
- name: Setting ap0 mac address for use in hostapd service file
|
|
set_fact:
|
|
ap0_mac_addr: "{{ ap0_mac.stdout }}"
|
|
when: can_be_ap
|
|
|
|
- name: "Use custom 'hostapd' systemd service unit file using ap0 -- install from template: /etc/systemd/system/hostapd.service, /etc/systemd/system/iiab-clone-wifi.service, /etc/systemd/system/iiab-wifi-test.service, /usr/sbin/iiab-test-wifi"
|
|
template:
|
|
owner: root
|
|
group: root
|
|
src: "{{ item.src }}"
|
|
dest: "{{ item.dest }}"
|
|
mode: "{{ item.mode }}"
|
|
with_items:
|
|
- { src: 'hostapd/hostapd.service.j2', dest: '/etc/systemd/system/hostapd.service', mode: '0644' }
|
|
- { src: 'hostapd/iiab-clone-wifi.service.j2', dest: '/etc/systemd/system/iiab-clone-wifi.service', mode: '0644' }
|
|
- { src: 'hostapd/iiab-wifi-test.service.j2', dest: '/etc/systemd/system/iiab-wifi-test.service', mode: '0644'}
|
|
- { src: 'hostapd/iiab-test-wifi.j2', dest: '/usr/sbin/iiab-test-wifi', mode: '0755' }
|
|
when: can_be_ap
|
|
|
|
- name: Use custom 'hostapd' systemd service unit file for {{ discovered_wireless_iface }} when not wifi_up_down
|
|
template:
|
|
src: hostapd/hostapd.legacy.j2
|
|
dest: /etc/systemd/system/hostapd.service
|
|
owner: root
|
|
group: root
|
|
mode: 0644
|
|
when: not wifi_up_down and can_be_ap
|
|
|
|
# 2022-07-11: Install of iiab-hotspot-on|off moved to network/tasks/main.yml
|
|
# as required for Admin Console
|
|
|
|
- name: Enable the Access Point 'hostapd' service
|
|
systemd:
|
|
name: hostapd
|
|
enabled: yes
|
|
when: hostapd_enabled and not wifi_up_down
|
|
|
|
- name: Disable ap0 related services
|
|
systemd:
|
|
name: "{{ item }}"
|
|
enabled: no
|
|
daemon_reload: yes
|
|
with_items:
|
|
- iiab-clone-wifi.service
|
|
- iiab-wifi-test.service
|
|
when: not wifi_up_down
|
|
|
|
- name: Enable the Access Point 'hostapd' and ap0 related services
|
|
systemd:
|
|
name: "{{ item }}"
|
|
enabled: yes
|
|
daemon_reload: yes
|
|
with_items:
|
|
- hostapd.service
|
|
- iiab-clone-wifi.service
|
|
- iiab-wifi-test.service
|
|
when: hostapd_enabled and wifi_up_down
|
|
|
|
- name: Record HOSTAPD_ENABLED to {{ iiab_env_file }}
|
|
lineinfile:
|
|
path: "{{ iiab_env_file }}"
|
|
regexp: '^HOSTAPD_ENABLED=*'
|
|
line: 'HOSTAPD_ENABLED={{ hostapd_enabled }}'
|
|
state: present
|