From 9efd28d1a22c41833cf6dce3150b4c73b834a7d5 Mon Sep 17 00:00:00 2001 From: Cem Keylan Date: Sun, 16 Aug 2020 10:35:32 +0300 Subject: rc.boot: fix creating /0755 directory --- rc.boot | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rc.boot b/rc.boot index 46bbdda..3b46576 100755 --- a/rc.boot +++ b/rc.boot @@ -20,7 +20,8 @@ out "Mounting pseudo filesystems..."; { mkdir -p /run/lvs /run/user /run/lock \ /run/log /dev/pts /dev/shm - command -v runsvdir >/dev/null 2>&1 && mkdir -p 0755 /run/runit + # shellcheck disable=2174 + command -v runsvdir >/dev/null 2>&1 && mkdir -pm 0755 /run/runit mnt mode=0620,gid=5,nosuid,noexec devpts devpts /dev/pts mnt mode=1777,nosuid,nodev tmpfs shm /dev/shm -- cgit v1.2.3