diff options
author | Cem Keylan <cem@ckyln.com> | 2020-08-16 10:35:32 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2020-08-16 10:35:32 +0300 |
commit | 9efd28d1a22c41833cf6dce3150b4c73b834a7d5 (patch) | |
tree | 2442f1ab0f1324fdd8e3582f288c4d8dff2ea7a6 | |
parent | aa0a0da875e1264a880d24e1529bfc72b12bba75 (diff) | |
download | init-9efd28d1a22c41833cf6dce3150b4c73b834a7d5.tar.gz |
rc.boot: fix creating /0755 directory
-rwxr-xr-x | rc.boot | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 |