You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# This script is distributed with Maratona Linux under the terms of GPLv2
export PATH="/bin:/usr/bin:/sbin:/usr/sbin"
whiptail --backtitle "Maratona Linux FACTORY RESET" --inputbox "ATTENTION: This operation in IRREVERSIBLE! All data will be lost. Are you sure? Write 'I am sure' if you are sure" 15 70 2>/tmp/choice
RESP="$(< /tmp/choice)"
if [[ "$RESP" != "I am sure" ]]; then
whiptail --msgbox "FACTORY RESET ABORTED. System will now reboot" 10 70