view core/sysvinit/rc.shutdown @ 405:01b5d3175215

vanilla: add proper support for udev and boot scripts
author David Demelier <markand@malikania.fr>
date Wed, 03 Apr 2019 20:14:00 +0200
parents 36f3ab3945d7
children 014d018468fb
line wrap: on
line source

#
# /etc/rc.shutdown: reboot and halt script
#
# Copyright (c) 2019 David Demelier <markand@malikania.fr>
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies.
#
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#

if [ -f /etc/rc.conf ]; then
	source /etc/rc.conf
fi

echo "Terminating all processes."
/usr/sbin/killall5 -15

echo "Unmounting all filesystems."
/usr/sbin/halt -w
/usr/sbin/swapoff -a

if [ -x /usr/bin/mount ]; then
	/usr/bin/umount -a -d -r -t nosysfs,noproc,nodevtmpfs
	/usr/bin/umount -a -r
	/usr/bin/mount -o remount,ro /
fi

if [ "$1" = "0" ]; then
	/usr/sbin/poweroff -d -f -i
else
	/usr/sbin/reboot -d -f -i
fi