From 57ed344917d909ca6ef76f24b3bb78f75b7ec407 Mon Sep 17 00:00:00 2001 From: Shea Levy Date: Tue, 27 May 2014 17:22:25 -0400 Subject: [PATCH] Fix /run/keys permissions --- nixos/modules/system/boot/stage-2-init.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/nixos/modules/system/boot/stage-2-init.sh b/nixos/modules/system/boot/stage-2-init.sh index a64c6cdfa19..ab414e29eb2 100644 --- a/nixos/modules/system/boot/stage-2-init.sh +++ b/nixos/modules/system/boot/stage-2-init.sh @@ -121,9 +121,10 @@ fi # written to disk (generally used for NixOps, harmless elsewhere). if ! mountpoint -q /run/keys; then rm -rf /run/keys - mkdir -m 0750 /run/keys - chown 0:96 /run/keys + mkdir /run/keys mount -t ramfs none /run/keys + chown 0:96 /run/keys + chmod 0750 /run/keys fi mkdir -m 0755 -p /run/lock