2022-03-28 23:53:26 +00:00
|
|
|
#!/bin/bash
|
2022-02-05 14:23:32 +00:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
# Copyright (C) 2021-present Fewtarius (https://github.com/fewtarius)
|
|
|
|
|
|
|
|
. /etc/profile
|
|
|
|
|
2023-04-22 20:01:07 +00:00
|
|
|
tocon "Configuring network..."
|
|
|
|
|
2023-02-16 22:40:39 +00:00
|
|
|
if [ "$(get_setting network.enabled)" == "0" ] || [ "$1" == "disable" ]
|
2022-02-05 14:23:32 +00:00
|
|
|
then
|
2022-04-09 00:08:14 +00:00
|
|
|
nohup wifictl disable &
|
2023-02-16 22:40:39 +00:00
|
|
|
elif [ "$(get_setting network.enabled)" == "1" ] || [ "$1" == "enable" ]
|
2022-02-05 14:23:32 +00:00
|
|
|
then
|
2022-04-09 00:08:14 +00:00
|
|
|
nohup wifictl enable &
|
2022-02-05 14:23:32 +00:00
|
|
|
fi
|
2023-02-09 12:25:32 +00:00
|
|
|
|