mirror of
https://github.com/iiab/iiab.git
synced 2025-02-15 04:32:11 +00:00
9 lines
405 B
Bash
9 lines
405 B
Bash
|
if ! [ -f /etc/iiab/install-flags/iiab-network-complete ]; then
|
||
|
zenity --question --text="You need to provision the network. Ensure you have your upstream internet active first if needed. You will be prompted for your password. You should REBOOT afterwards, do you want to Proceed?"
|
||
|
rc=$?
|
||
|
if [ $rc == "1" ]; then
|
||
|
exit 1
|
||
|
fi
|
||
|
x-terminal-emulator -e /usr/local/bin/iiab-network
|
||
|
fi
|