1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-02-15 04:32:11 +00:00
iiab/scripts/netwarn.sh

21 lines
820 B
Bash
Raw Normal View History

2022-07-17 20:15:56 +00:00
#!/bin/bash
if ! [ -f /etc/iiab/install-flags/iiab-network-complete ]; then
2022-07-17 20:15:56 +00:00
zenity --question --width=200 --text="You need to provision the network. Ensure you have your upstream internet active first. You might be prompted for your password. Should you not want to provision the network at this time just click NO"
rc=$?
if [ $rc == "1" ]; then
2022-07-17 20:15:56 +00:00
exit 0
fi
x-terminal-emulator -e /usr/local/bin/iiab-network
2022-07-17 20:15:56 +00:00
rc=$?
if [ $rc == "1" ]; then
zenity --question --width=200 --text="Network exited with error, please review /opt/iiab/iiab/iiab-network.log"
exit 1
fi
zenity --question --width=200 --text="A REBOOT is recommended, would you like to REBOOT now?"
rc=$?
if [ $rc == "1" ]; then
exit 0
fi
x-terminal-emulator -e /usr/sbin/reboot
fi