Merge pull request #882 from fewtarius/dev

Fixes a network name bug.
This commit is contained in:
fewtarius 2022-12-31 22:00:20 -05:00 committed by GitHub
commit cea839875f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -23,3 +23,9 @@ elif [ "$(get_setting wifi.enabled)" == "1" ] || [ "$1" == "enable" ]
then
nohup wifictl enable &
fi
NETCHECK=$(systemctl status connman >/dev/null 2>&1)
if [ "$?" = "0" ]
then
systemctl restart connman
fi