Files
PTS-Team/menu/processor/scripts/reboot.sh
MrDoobPG 70860c633a initial
2019-09-07 12:59:06 +02:00

11 lines
411 B
Bash

#!/bin/bash
clear
if (dialog --title "Reboot Question" --yesno "New policy will not take affect until you reboot your machine. Do you want to reboot your machine?" 0 0); then
dialog --title "Reboot Selected" --msgbox "Roger That! We will reboot your machine!" 0 0
sudo reboot
exit
else
dialog --title "No Reboot Selected" --msgbox "No problem! Just remember to reboot your machine later!" 0 0
exit
fi