svn commit: r287220 - head/etc/rc.d
Peter Wemm
peter at FreeBSD.org
Thu Aug 27 20:52:42 UTC 2015
Author: peter
Date: Thu Aug 27 20:52:41 2015
New Revision: 287220
URL: https://svnweb.freebsd.org/changeset/base/287220
Log:
Fix a conversion error in rc.d/jail
Modified:
head/etc/rc.d/jail
Modified: head/etc/rc.d/jail
==============================================================================
--- head/etc/rc.d/jail Thu Aug 27 20:38:45 2015 (r287219)
+++ head/etc/rc.d/jail Thu Aug 27 20:52:41 2015 (r287220)
@@ -238,7 +238,7 @@ parse_options()
eval : \${jail_${_j}_mount_enable:=${jail_mount_enable:-NO}}
if checkyesno jail_${_j}_mount_enable; then
- echo " allow.mount;" >> $_conf
+ echo " allow.mount;"
fi
extract_var $_j set_hostname_allow allow.set_hostname YN NO
More information about the svn-src-all
mailing list