]> git.ipfire.org Git - ipfire-3.x.git/commitdiff
initscripts: Remove unneeded file mount-kernel-filesystems.
authorSchantl Stefan <Stevee@ipfire.org>
Fri, 4 Jun 2010 21:40:32 +0000 (23:40 +0200)
committerSchantl Stefan <Stevee@ipfire.org>
Fri, 4 Jun 2010 21:40:32 +0000 (23:40 +0200)
pkgs/core/initscripts/init/mount-kernel-filesystems.conf [deleted file]

diff --git a/pkgs/core/initscripts/init/mount-kernel-filesystems.conf b/pkgs/core/initscripts/init/mount-kernel-filesystems.conf
deleted file mode 100644 (file)
index cef79e5..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-description            "Mount kernel virtual systems"
-author                 "IPFire Team"
-
-start on stopped welcome
-
-script
-       if ! mountpoint /proc > /dev/null; then
-               mount -n /proc || failed=1
-       fi
-
-       if ! mountpoint /sys > /dev/null; then
-               mount -n /sys || failed=1
-       fi
-
-       exit ${failed}
-end script