Menu

[r10367]: / branches / 0.7 / etc / rc.initial.halt  Maximize  Restore  History

Download this file

22 lines (19 with data), 395 Bytes

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

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

case $? in
	0)
		/sbin/shutdown -p 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.