diff --git a/usr/local/bin/digihotspot.sh b/usr/local/bin/digihotspot.sh new file mode 100755 index 0000000..0f58fd8 --- /dev/null +++ b/usr/local/bin/digihotspot.sh @@ -0,0 +1,11 @@ +#!/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 +