summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2014-03-18 15:13:11 +0100
committerEelco Dolstra <eelco.dolstra@logicblox.com>2014-03-18 22:40:39 +0100
commit08095f97ce88962c365781ffa1692aadc03a8de8 (patch)
treea574747793d15aa448e683e67b210194c908742d /nixos
parentab7a8abd58af2a3be49f34de827ca340b7a87ccb (diff)
downloadnixpkgs-08095f97ce88962c365781ffa1692aadc03a8de8.tar
nixpkgs-08095f97ce88962c365781ffa1692aadc03a8de8.tar.gz
nixpkgs-08095f97ce88962c365781ffa1692aadc03a8de8.tar.bz2
nixpkgs-08095f97ce88962c365781ffa1692aadc03a8de8.tar.lz
nixpkgs-08095f97ce88962c365781ffa1692aadc03a8de8.tar.xz
nixpkgs-08095f97ce88962c365781ffa1692aadc03a8de8.tar.zst
nixpkgs-08095f97ce88962c365781ffa1692aadc03a8de8.zip
Typo
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/system/boot/stage-2-init.sh5
1 files changed, 2 insertions, 3 deletions
diff --git a/nixos/modules/system/boot/stage-2-init.sh b/nixos/modules/system/boot/stage-2-init.sh
index b749172a3ff..9b3cfc9e7a5 100644
--- a/nixos/modules/system/boot/stage-2-init.sh
+++ b/nixos/modules/system/boot/stage-2-init.sh
@@ -131,9 +131,8 @@ if ! mountpoint -q /run; then
     mount -t tmpfs -o "mode=0755,size=@runSize@" none /run
 fi
 
-# Create a ramfs on /run/keys to hold secrets that shouldn't
-# be written to disk (generally used for nixops, harmless
-# elsehwere)
+# Create a ramfs on /run/keys to hold secrets that shouldn't be
+# written to disk (generally used for NixOps, harmless elsewhere).
 if ! mountpoint -q /run/keys; then
     rm -rf /run/keys
     mkdir -m 0750 /run/keys