From 9de16d22b0ac3cbb74793faa913db889d8151ee5 Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Wed, 04 Jun 2014 23:08:41 -0400 Subject: Merge branch 'feature/init-system-improvements'. --- (limited to 'src.etc/init.d/mountall') 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 -- cgit v0.9.1