about summary refs log tree commit diff
path: root/core-services
diff options
context:
space:
mode:
authorJuan RP <xtraeme@gmail.com>2014-09-28 08:54:56 +0200
committerJuan RP <xtraeme@gmail.com>2014-09-28 08:54:56 +0200
commite593f1a8ee65f7adce1c781e1d361f92eda39099 (patch)
tree8d09b53ac5afd69b0a5d457558e70965f68a0a29 /core-services
parent161da00268b2a6d139cce2c026dd28a6812ff756 (diff)
downloadrunit-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')
-rw-r--r--core-services/00-pseudofs.sh2
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