summaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authormtm <mtm@FreeBSD.org>2008-03-06 14:39:33 +0000
committermtm <mtm@FreeBSD.org>2008-03-06 14:39:33 +0000
commita0d97bf1991748cdad000442f28fb358282beb8a (patch)
treee59e72c753d57f2cc0a9b09a2a9903f1da9c5aa6 /etc
parent2bdd8272907126592262d3b990239afa2efc09b6 (diff)
downloadFreeBSD-src-a0d97bf1991748cdad000442f28fb358282beb8a.zip
FreeBSD-src-a0d97bf1991748cdad000442f28fb358282beb8a.tar.gz
The check for errors from the mount command did not work as intended
because another command (echo) is executed between the mount command and the check. Reported by: Sergey Baturov <sergey@toor.org.ru> MFC after: 2 weeks
Diffstat (limited to 'etc')
-rwxr-xr-xetc/rc.d/mountcritlocal5
-rw-r--r--etc/rc.d/mountlate5
2 files changed, 8 insertions, 2 deletions
diff --git a/etc/rc.d/mountcritlocal b/etc/rc.d/mountcritlocal
index 880f075..c25d62d 100755
--- a/etc/rc.d/mountcritlocal
+++ b/etc/rc.d/mountcritlocal
@@ -15,6 +15,8 @@ stop_cmd=":"
mountcritlocal_start()
{
+ local err
+
# Set up the list of network filesystem types for which mounting
# should be delayed until after network initialization.
case ${extra_netfs_types} in
@@ -34,9 +36,10 @@ mountcritlocal_start()
done
mount_excludes=${mount_excludes%,}
mount -a -t ${mount_excludes}
+ err=$?
echo '.'
- case $? in
+ case ${err} in
0)
;;
*)
diff --git a/etc/rc.d/mountlate b/etc/rc.d/mountlate
index 6da5e79..1b8a3e6 100644
--- a/etc/rc.d/mountlate
+++ b/etc/rc.d/mountlate
@@ -16,12 +16,15 @@ stop_cmd=":"
mountlate_start()
{
+ local err
+
# Mount "late" filesystems.
echo -n 'Mounting late file systems:'
mount -a -l
+ err=$?
echo '.'
- case $? in
+ case ${err} in
0)
;;
*)
OpenPOWER on IntegriCloud