mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
656ea85e60
* Unmount, don't remount / on halt. svn path=/nixu/trunk/; revision=1169
12 lines
243 B
Bash
12 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
|