1
0
mirror of https://github.com/systemd/systemd.git synced 2024-12-26 03:22:00 +03:00

mount-setup: set default modes when mounting

This commit is contained in:
Lennart Poettering 2010-04-06 21:55:39 +02:00
parent 0398f3da3c
commit 055ba4d60e

View File

@ -39,12 +39,12 @@ enum {
};
static const char *table[] = {
"/proc", "/proc", "proc", "rw",
"/sys", "/sys", "sysfs", "rw",
"udev", "/dev", "devtmpfs", "rw",
"tmpfs", "/dev/shm", "tmpfs", "rw",
"devpts", "/dev/pts", "devpts", "rw",
"cgroup", "/cgroup/debug", "cgroup", "debug",
"proc", "/proc", "proc", "rw",
"sysfs", "/sys", "sysfs", "rw",
"devtmps", "/dev", "devtmpfs", "mode=755",
"tmpfs", "/dev/shm", "tmpfs", "mode=1777",
"devpts", "/dev/pts", "devpts", "rw",
"cgroup", "/cgroup/debug", "cgroup", "debug",
NULL
};