1
0
mirror of https://github.com/billz/raspap-webgui.git synced 2023-10-10 13:37:24 +02:00

Check for presence of raspap/hostapd.ini

This commit is contained in:
billz 2019-04-19 12:23:05 +00:00
parent f73dcd4e99
commit b54289098e

View File

@ -31,6 +31,7 @@ systemctl stop hostapd.service
systemctl stop dnsmasq.service
systemctl stop dhcpcd.service
if [ -f /etc/raspap/hostapd.ini ]; then
source <(grep = /etc/raspap/hostapd.ini | sed 's/ *= */=/g')
if [ $WifiAPEnable = 1 ]; then
if [ "${interface}" = "uap0" ]; then
@ -44,17 +45,16 @@ if [ $WifiAPEnable = 1 ]; then
ifconfig uap0 up
fi
fi
fi
# Start services, mitigating race conditions
echo "Starting hostapd service..."
echo "Starting network services..."
systemctl start hostapd.service
sleep "${seconds}"
echo "Starting dhcpcd service..."
systemctl start dhcpcd.service
sleep "${seconds}"
echo "Starting dnsmasq service..."
systemctl start dnsmasq.service
echo "RaspAP service start DONE"