aboutsummaryrefslogtreecommitdiff
path: root/etc/rc.d/mountlate
diff options
context:
space:
mode:
authorLars Engels <lme@FreeBSD.org>2016-04-23 16:10:54 +0000
committerLars Engels <lme@FreeBSD.org>2016-04-23 16:10:54 +0000
commit6c1a5e837d2d886042767bcc7b7255b81acc0965 (patch)
treed032256fcb2866de2887b017f399c734c1439413 /etc/rc.d/mountlate
parent013cb2e9613644a0be164a61ee4ec744cb60431f (diff)
downloadsrc-6c1a5e837d2d886042767bcc7b7255b81acc0965.tar.gz
src-6c1a5e837d2d886042767bcc7b7255b81acc0965.zip
- Add descriptions to most of the rc scripts. Those are mostly taken from their
daemon's manpage and probably improved. - Consistently use "filesystem" not "file system". Approved by: bapt, brueffer Differential Revision: D452
Notes
Notes: svn path=/head/; revision=298514
Diffstat (limited to 'etc/rc.d/mountlate')
-rwxr-xr-xetc/rc.d/mountlate3
1 files changed, 2 insertions, 1 deletions
diff --git a/etc/rc.d/mountlate b/etc/rc.d/mountlate
index 34defc5d36ba..f0384ad4dea2 100755
--- a/etc/rc.d/mountlate
+++ b/etc/rc.d/mountlate
@@ -11,6 +11,7 @@
. /etc/rc.subr
name="mountlate"
+desc="Mount filesystems with \"late\" option from /etc/fstab"
start_cmd="mountlate_start"
stop_cmd=":"
@@ -21,7 +22,7 @@ mountlate_start()
# Mount "late" filesystems.
#
err=0
- echo -n 'Mounting late file systems:'
+ echo -n 'Mounting late filesystems:'
mount -a -L
err=$?
echo '.'