30 lines
646 B
Bash
Executable File
30 lines
646 B
Bash
Executable File
#!/bin/bash
|
|
# Disable PiWifiAP wireless access point
|
|
|
|
current_user=`whoami`
|
|
if [ "$current_user" != "root" ]
|
|
then
|
|
echo "You must have root privileges to run this setup."
|
|
echo "Try 'sudo $0'"
|
|
exit 1
|
|
fi
|
|
|
|
source /etc/piwifiap/piwifiap.conf
|
|
|
|
case "$network_system" in
|
|
"systemd-networkd")
|
|
systemctl stop hostapd
|
|
systemctl disable hostapd
|
|
;;
|
|
"NetworkManager")
|
|
nmcli con down piwifi-hotspot
|
|
nmcli con mod piwifi-hotspot autoconnect no
|
|
;;
|
|
*)
|
|
echo "Unable to determine what type of network configuration (systemd-networkd"
|
|
echo "or NetworkManager) your system uses."
|
|
echo "Cannot disable wireless access point."
|
|
exit 2
|
|
;;
|
|
esac
|