svn commit: r271145 - head/etc/rc.d
Hiroki Sato
hrs at FreeBSD.org
Thu Sep 4 22:00:53 UTC 2014
Author: hrs
Date: Thu Sep 4 22:00:52 2014
New Revision: 271145
URL: http://svnweb.freebsd.org/changeset/base/271145
Log:
Fix a bug which prevented mount.fstab parameter from being converted
when jail_JID_devfs_enable=NO.
Spotted by: peter
Modified:
head/etc/rc.d/jail
Modified: head/etc/rc.d/jail
==============================================================================
--- head/etc/rc.d/jail Thu Sep 4 21:48:33 2014 (r271144)
+++ head/etc/rc.d/jail Thu Sep 4 22:00:52 2014 (r271145)
@@ -207,6 +207,10 @@ parse_options()
extract_var $_j consolelog exec.consolelog - \
/var/log/jail_${_j}_console.log
+ if [ -r $_fstab ]; then
+ echo " mount.fstab = \"$_fstab\";"
+ fi
+
eval : \${jail_${_j}_devfs_enable:=${jail_devfs_enable:-NO}}
if checkyesno jail_${_j}_devfs_enable; then
echo " mount.devfs;"
@@ -222,11 +226,7 @@ parse_options()
;;
*) warn "devfs_ruleset must be an integer." ;;
esac
- if [ -r $_fstab ]; then
- echo " mount.fstab = \"$_fstab\";"
- fi
fi
-
eval : \${jail_${_j}_fdescfs_enable:=${jail_fdescfs_enable:-NO}}
if checkyesno jail_${_j}_fdescfs_enable; then
echo " mount.fdescfs;"
More information about the svn-src-all
mailing list