summaryrefslogtreecommitdiffstats
path: root/plug/coldplug.c
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 /plug/coldplug.c
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>
Diffstat (limited to 'plug/coldplug.c')
-rw-r--r--plug/coldplug.c2
1 files changed, 1 insertions, 1 deletions
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;