distribution/packages/jelos/autostart/080-network

18 lines
432 B
Text
Raw Normal View History

#!/bin/sh
# SPDX-License-Identifier: GPL-2.0
# Copyright (C) 2023 JELOS (https://github.com/JustEnoughLinuxOS)
2022-02-05 14:23:32 +00:00
# Minimal OS variable loading for performance
. /etc/profile.d/001-functions
2022-02-05 14:23:32 +00:00
tocon "Configuring network..."
if [ "$(get_setting network.enabled)" == "0" ] || [ "$1" == "disable" ]
2022-02-05 14:23:32 +00:00
then
nohup wifictl disable &
elif [ "$(get_setting network.enabled)" == "1" ] || [ "$1" == "enable" ]
2022-02-05 14:23:32 +00:00
then
nohup wifictl enable &
2022-02-05 14:23:32 +00:00
fi