autoreboot.sh 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. #!/bin/bash
  2. red='\e[1;31m'
  3. green='\e[0;32m'
  4. NC='\e[0m'
  5. MYIP=$(wget -qO- icanhazip.com);
  6. echo "Checking VPS"
  7. IZIN=$( curl http://lnd.red-flat.my.id:81/shahwjusisjsnajakajannaiajanajam | grep $MYIP )
  8. if [ $MYIP = $MYIP ]; then
  9. echo -e "${green}Permission Accepted...${NC}"
  10. else
  11. echo -e "${red}Permission Denied!${NC}";
  12. echo "Only For Premium Users"
  13. exit 0
  14. fi
  15. clear
  16. echo -e ""
  17. echo -e "------------------------------------" | lolcat
  18. echo -e " AUTO REBOOT"
  19. echo -e "------------------------------------" | lolcat
  20. echo -e ""
  21. echo -e " 1) Auto Reboot 30 minutes"
  22. echo -e " 2) Auto Reboot 1 Hours"
  23. echo -e " 3) Auto Reboot 12 Hours"
  24. echo -e " 4) Auto Reboot 24 Hours"
  25. echo -e " 5) Auto Reboot 1 weeks"
  26. echo -e " 6) Auto Reboot 1 mount"
  27. echo -e ""
  28. echo -e "------------------------------------" | lolcat
  29. echo -e " x) MENU"
  30. echo -e "------------------------------------" | lolcat
  31. echo -e ""
  32. read -p " Please Input Number [1-6 or x] : " autoreboot
  33. echo -e ""
  34. case $autoreboot in
  35. 1)
  36. echo "*/30 * * * * root /usr/bin/reboot" > /etc/cron.d/auto_reboot && chmod +x /etc/cron.d/auto_reboot
  37. ;;
  38. 2)
  39. echo "0 * * * * root /usr/bin/reboot" > /etc/cron.d/auto_reboot && chmod +x /etc/cron.d/auto_reboot
  40. ;;
  41. 3)
  42. echo "0 */12 * * * root /usr/bin/reboot" > /etc/cron.d/auto_reboot && chmod +x /etc/cron.d/auto_reboot
  43. ;;
  44. 4)
  45. echo "0 0 * * * root /usr/bin/reboot" > /etc/cron.d/auto_reboot && chmod +x /etc/cron.d/auto_reboot
  46. ;;
  47. 5)
  48. echo "0 0 */7 * * root /usr/bin/reboot" > /etc/cron.d/auto_reboot && chmod +x /etc/cron.d/auto_reboot
  49. ;;
  50. 6)
  51. echo "0 0 1 * * root /usr/bin/reboot" > /etc/cron.d/auto_reboot && chmod +x /etc/cron.d/auto_reboot
  52. ;;
  53. x)
  54. menu
  55. ;;
  56. *)
  57. echo "Please enter an correct number"
  58. ;;
  59. esac