2004-02-16 10:41:00 +01:00
|
|
|
#! @bash@/bin/sh -e
|
|
|
|
|
2004-02-18 11:56:07 +01:00
|
|
|
export PATH=@nix@/bin:@bash@/bin:@coreutils@/bin:@findutils@/bin:@utillinux@/bin:@utillinux@/sbin:@sysvinit@/bin:@sysvinit@/sbin:@e2fsprogs@/bin:@e2fsprogs@/sbin
|
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
|