summaryrefslogtreecommitdiffstats
path: root/src.etc/init.d/mountall
diff options
context:
space:
mode:
authorP. J. McDermott <pj@pehjota.net>2014-06-02 21:39:02 (EDT)
committer P. J. McDermott <pj@pehjota.net>2014-06-02 21:39:02 (EDT)
commitcc8a81cbfb50ff8a8367d77ef80bece937b6cbaf (patch)
tree1e3b0dd86ae85e1b7e39f1d8757e26562e8b98d9 /src.etc/init.d/mountall
parentfa34a9d3c31f9c76c3ae431434a9fd831518e79a (diff)
Convert mount scripts to use /etc/rc.common.
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