* In EC2 instances, a kernel panic should cause a reboot, and a

problem in stage 1 should cause a panic.  (Actually, the latter
  should probably kill the instance since we can't repair it
  anyway...)

svn path=/nixos/trunk/; revision=30215
This commit is contained in:
Eelco Dolstra 2011-11-03 20:11:11 +00:00
parent 2825a3a6ae
commit c5955e5474

View file

@ -7,4 +7,7 @@
boot.initrd.enableSplashScreen = false;
services.ttyBackgrounds.enable = false;
services.mingetty.ttys = [ ];
# Since we can't manually respond to a panic, just reboot.
boot.kernelParams = [ "panic=1" "stage1panic=1" ];
}