mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
656ea85e60
* Unmount, don't remount / on halt. svn path=/nixu/trunk/; revision=1169
13 lines
243 B
Bash
13 lines
243 B
Bash
#! @bash@/bin/sh -e
|
|
|
|
. @out@/bin/env.sh
|
|
|
|
echo "unmount file systems..."
|
|
umount -avt noproc,nonfs,nosmbfs,nodevfs || echo "(failed)" # ignore errors
|
|
|
|
echo "syncing..."
|
|
sync || echo "(failed)" # ignore errors
|
|
|
|
echo "shutting down..."
|
|
halt -d -f
|