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

Added check for WifiAPEnable flag

This commit is contained in:
billz 2019-04-19 11:35:03 +00:00
parent 1e93189a65
commit 57f42f2019

View File

@ -31,15 +31,18 @@ systemctl stop hostapd.service
systemctl stop dnsmasq.service
systemctl stop dhcpcd.service
echo "Removing uap0 interface..."
iw dev uap0 del
source <(grep = /etc/raspap/hostapd.ini | sed 's/ *= */=/g')
if [ $WifiAPEnable = 1 ]; then
if [ "${interface}" = "uap0" ]; then
echo "Removing uap0 interface..."
iw dev uap0 del
if [ "${interface}" = "uap0" ]; then
echo "Adding uap0 interface..."
iw dev wlan0 interface add uap0 type __ap
echo "Adding uap0 interface..."
iw dev wlan0 interface add uap0 type __ap
# Bring up uap0 interface
ifconfig uap0 up
# Bring up uap0 interface
ifconfig uap0 up
fi
fi
# Start services, mitigating race conditions