diff options
author | Juan RP <xtraeme@gmail.com> | 2014-09-28 08:54:56 +0200 |
---|---|---|
committer | Juan RP <xtraeme@gmail.com> | 2014-09-28 08:54:56 +0200 |
commit | e593f1a8ee65f7adce1c781e1d361f92eda39099 (patch) | |
tree | 8d09b53ac5afd69b0a5d457558e70965f68a0a29 /core-services/00-pseudofs.sh | |
parent | 161da00268b2a6d139cce2c026dd28a6812ff756 (diff) | |
download | runit-void-e593f1a8ee65f7adce1c781e1d361f92eda39099.tar.gz runit-void-e593f1a8ee65f7adce1c781e1d361f92eda39099.tar.xz runit-void-e593f1a8ee65f7adce1c781e1d361f92eda39099.zip |
core-services/00-pseudofs.sh: fix /proc mount due to a typo.
Diffstat (limited to 'core-services/00-pseudofs.sh')
-rw-r--r-- | core-services/00-pseudofs.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core-services/00-pseudofs.sh b/core-services/00-pseudofs.sh index dae9c45..5d72950 100644 --- a/core-services/00-pseudofs.sh +++ b/core-services/00-pseudofs.sh @@ -1,7 +1,7 @@ # vim: set ts=4 sw=4 et: msg "Mounting pseudo-filesystems...\n" -mountpoint -q /proc || mount -o nosuid,noexec-nodev -t proc proc /proc +mountpoint -q /proc || mount -o nosuid,noexec,nodev -t proc proc /proc mountpoint -q /sys || mount -o nosuid,noexec,nodev -t sysfs sys /sys mountpoint -q /run || mount -o mode=0755,nosuid,nodev -t tmpfs run /run mountpoint -q /dev || mount -o mode=0755,nosuid -t devtmpfs dev |