summaryrefslogtreecommitdiffstats
path: root/src.etc/init.d/mountall
diff options
context:
space:
mode:
Diffstat (limited to 'src.etc/init.d/mountall')
-rwxr-xr-xsrc.etc/init.d/mountall17
1 files changed, 2 insertions, 15 deletions
diff --git a/src.etc/init.d/mountall b/src.etc/init.d/mountall
index 4882427..1e15f03 100755
--- a/src.etc/init.d/mountall
+++ b/src.etc/init.d/mountall
@@ -1,20 +1,7 @@
-#!/bin/sh
+#!/bin/sh /etc/rc.common
start()
{
- printf 'Mounting file systems... '
+ log 'Mounting file systems'
[ -r /etc/fstab ] && mount -a
- printf 'done.\n'
}
-
-case "${1}" in
- start)
- start
- ;;
- stop)
- ;;
- *)
- printf 'Usage: %s {start|stop}\n' "${0}" >&2
- exit 1
- ;;
-esac