From: Schantl Stefan Date: Fri, 4 Jun 2010 21:40:32 +0000 (+0200) Subject: initscripts: Remove unneeded file mount-kernel-filesystems. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bfd6768c717aef07b655e69b7869d69a86c31837;p=ipfire-3.x.git initscripts: Remove unneeded file mount-kernel-filesystems. --- diff --git a/pkgs/core/initscripts/init/mount-kernel-filesystems.conf b/pkgs/core/initscripts/init/mount-kernel-filesystems.conf deleted file mode 100644 index cef79e529..000000000 --- a/pkgs/core/initscripts/init/mount-kernel-filesystems.conf +++ /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