summaryrefslogtreecommitdiffstats
path: root/init.d/mountall
diff options
context:
space:
mode:
Diffstat (limited to 'init.d/mountall')
-rw-r--r--init.d/mountall8
1 files changed, 8 insertions, 0 deletions
diff --git a/init.d/mountall b/init.d/mountall
new file mode 100644
index 0000000..8d0f306
--- /dev/null
+++ b/init.d/mountall
@@ -0,0 +1,8 @@
+#!/sbin/runscript
+
+start() {
+ ebegin "Mounting local filesystems"
+ mount -a -t nonfs,nonfs4,nosmbfs,nocifs,noncp,noncpfs,nocoda,noocfs2,nogfs 2>&1 >/tmp/mountdebug
+ eend $?
+}
+