summaryrefslogtreecommitdiffstats
path: root/src.etc/init.d/mountall
diff options
context:
space:
mode:
authorP. J. McDermott <pj@pehjota.net>2014-06-04 23:08:41 (EDT)
committer P. J. McDermott <pj@pehjota.net>2014-06-04 23:08:41 (EDT)
commit9de16d22b0ac3cbb74793faa913db889d8151ee5 (patch)
tree0f6ed6fe2701368c036c0da9e72be362963d68b6 /src.etc/init.d/mountall
parent79d474a5fdc0ea8b9e05f5b68567dbbe9086e4ca (diff)
parentb98d2d2ad1e341a6493fcd5531d605e8427665ca (diff)
Merge branch 'feature/init-system-improvements'.
Diffstat (limited to 'src.etc/init.d/mountall')
-rwxr-xr-xsrc.etc/init.d/mountall21
1 files changed, 5 insertions, 16 deletions
diff --git a/src.etc/init.d/mountall b/src.etc/init.d/mountall
index 4882427..8515157 100755
--- a/src.etc/init.d/mountall
+++ b/src.etc/init.d/mountall
@@ -1,20 +1,9 @@
-#!/bin/sh
+#!/bin/sh /etc/rc.common
start()
{
- printf 'Mounting file systems... '
- [ -r /etc/fstab ] && mount -a
- printf 'done.\n'
+ log 'Mounting file systems'
+ if [ -r /etc/fstab ]; then
+ mount -a
+ fi
}
-
-case "${1}" in
- start)
- start
- ;;
- stop)
- ;;
- *)
- printf 'Usage: %s {start|stop}\n' "${0}" >&2
- exit 1
- ;;
-esac