This commit is contained in:
billz 2019-03-06 19:14:17 +00:00
parent 39e9037593
commit c8b2737fbf
1 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,12 @@
#!/bin/bash
# When wireless client AP mode is enabled, the hostapdstart script handles starting up network services
# in a specific order and timing to avoid race conditions. Disabling them here ensures they are not run
# at system startup.
sudo systemctl stop hostapd
sudo systemctl stop dnsmasq
sudo systemctl stop dhcpcd
sudo systemctl disable hostapd
sudo systemctl disable dnsmasq
sudo systemctl disable dhcpcd