Menu

[r10367]: / legacy / etc / rc.initial.reboot  Maximize  Restore  History

Download this file

22 lines (19 with data), 399 Bytes

#!/bin/sh
#
# rc.initial.reboot
# Copyright (c) 2007-2009 Volker Theile (votdev@gmx.de)
#
# part of FreeNAS (http://freenas.org)
# Copyright (C) 2005-2009 Olivier Cochard-Labbe <olivier@freenas.org>.
# All rights reserved.

# Display dialog
cdialog --defaultno --yesno "Do you really want to reboot the system?" 5 46

case $? in
	0)
		/sbin/shutdown -r now >/dev/null;
		;;
	1)
		;;
	255)
		;;
esac
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.