2004-02-16 09:41:00 +00:00
|
|
|
#! @bash@/bin/sh -e
|
|
|
|
|
2004-02-19 12:49:00 +00:00
|
|
|
. @out@/bin/env.sh
|
2004-02-16 09:41:00 +00:00
|
|
|
|
2004-07-16 15:41:47 +00:00
|
|
|
echo "unmount file systems..."
|
|
|
|
umount -avt noproc,nonfs,nosmbfs,nodevfs || echo "(failed)" # ignore errors
|
2004-02-18 10:56:07 +00:00
|
|
|
|
|
|
|
echo "syncing..."
|
|
|
|
sync || echo "(failed)" # ignore errors
|
|
|
|
|
2004-02-16 09:41:00 +00:00
|
|
|
echo "shutting down..."
|
2004-02-18 10:56:07 +00:00
|
|
|
halt -d -f
|