2004-02-16 10:41:00 +01:00
|
|
|
#! @bash@/bin/sh -e
|
|
|
|
|
2004-02-19 13:49:00 +01:00
|
|
|
. @out@/bin/env.sh
|
2004-02-16 10:41:00 +01:00
|
|
|
|
2004-02-18 11:56:07 +01:00
|
|
|
echo "remounting / read-only..."
|
|
|
|
mount -n -o remount,rw /dev/root / || echo "(failed)" # ignore errors
|
|
|
|
|
|
|
|
echo "syncing..."
|
|
|
|
sync || echo "(failed)" # ignore errors
|
|
|
|
|
2004-02-16 10:41:00 +01:00
|
|
|
echo "shutting down..."
|
2004-02-18 11:56:07 +01:00
|
|
|
halt -d -f
|