mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
* Ensure that the ‘mount-failed’ and ‘emergency-shell’ tasks don't get
started by ‘switch-to-configuration.sh’. svn path=/nixos/branches/boot-order/; revision=22473
This commit is contained in:
parent
1f97de224f
commit
4225181fa1
1 changed files with 3 additions and 0 deletions
|
@ -177,6 +177,7 @@ in
|
|||
startOn = "mount-failed";
|
||||
script =
|
||||
''
|
||||
[ -n "$MOUNTPOINT" ] || exit 0
|
||||
start --no-wait emergency-shell \
|
||||
DEVICE="$DEVICE" MOUNTPOINT="$MOUNTPOINT"
|
||||
'';
|
||||
|
@ -191,6 +192,8 @@ in
|
|||
|
||||
script =
|
||||
''
|
||||
[ -n "$MOUNTPOINT" ] || exit 0
|
||||
|
||||
exec < /dev/console > /dev/console 2>&1
|
||||
|
||||
cat <<EOF
|
||||
|
|
Loading…
Reference in a new issue