activation: Don't use double quotes in boot loader warning message, it messes up perl system call

This commit is contained in:
Rickard Nilsson 2013-01-25 15:47:38 +01:00
parent 28cf26d674
commit e32e501435

View file

@ -156,7 +156,7 @@ let
config.boot.kernelParams ++ config.boot.extraKernelParams;
installBootLoader =
config.system.build.installBootLoader
or "echo \"Warning: don't know how to make this configuration bootable; please enable a boot loader.\" 1>&2; true";
or "echo 'Warning: do not know how to make this configuration bootable; please enable a boot loader.' 1>&2; true";
activationScript = config.system.activationScripts.script;
nixosVersion = config.system.nixosVersion;