forked from mirrors/nixpkgs
* 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:
parent
2825a3a6ae
commit
c5955e5474
|
@ -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" ];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue