summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Gimpelevich <daniel@gimpelevich.san-francisco.ca.us>2015-06-17 11:51:37 +0200
committerFelix Fietkau <nbd@openwrt.org>2015-06-17 12:08:33 +0200
commitacb157e638aa93490ca84be381c28643d50d4e4a (patch)
treee09407651ad74fd20d7e16d9e58af4d144795438
parent9562ce477476a27851ec90cfbf971b8cb41c81a6 (diff)
downloadunitd-acb157e638aa93490ca84be381c28643d50d4e4a.tar
unitd-acb157e638aa93490ca84be381c28643d50d4e4a.zip
fix /dev/shm permissions
On my Ubuntu system, the permissions are 1777. They are incorrect in procd, leading to this: https://forum.openwrt.org/viewtopic.php?id=57073 This in intended for both CC and DD. Signed-off-by: Daniel Gimpelevich <daniel@gimpelevich.san-francisco.ca.us>
-rw-r--r--initd/early.c2
-rw-r--r--plug/coldplug.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/initd/early.c b/initd/early.c
index ccf7aab..e57ea9d 100644
--- a/initd/early.c
+++ b/initd/early.c
@@ -64,7 +64,7 @@ early_mounts(void)
mount("sysfs", "/sys", "sysfs", MS_NOATIME, 0);
mount("none", "/sys/fs/cgroup", "cgroup", 0, 0);
mount("tmpfs", "/dev", "tmpfs", MS_NOATIME, "mode=0755,size=512K");
- mkdir("/dev/shm", 0755);
+ mkdir("/dev/shm", 01777);
mkdir("/dev/pts", 0755);
mount("devpts", "/dev/pts", "devpts", MS_NOATIME, "mode=600");
early_dev();
diff --git a/plug/coldplug.c b/plug/coldplug.c
index 466b759..49a2017 100644
--- a/plug/coldplug.c
+++ b/plug/coldplug.c
@@ -44,7 +44,7 @@ void procd_coldplug(void)
umount2("/dev/pts", MNT_DETACH);
umount2("/dev/", MNT_DETACH);
mount("tmpfs", "/dev", "tmpfs", 0, "mode=0755,size=512K");
- mkdir("/dev/shm", 0755);
+ mkdir("/dev/shm", 01777);
mkdir("/dev/pts", 0755);
mount("devpts", "/dev/pts", "devpts", 0, 0);
udevtrigger.cb = udevtrigger_complete;