digipi/usr/local/bin/digihotspot.sh

12 wiersze
246 B
Bash
Executable File

#!/bin/sh
echo "Auto-hotspot checking network status."
STATUS=`cat /sys/class/net/wlan0/operstate`
if [ $STATUS = "down" -o $STATUS = "dormant" ]; then
echo "Wifi network is down, enabling hot spot mode."
nmcli connection up hotspot
fi