Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 31 Dec 2015 01:26:43 +0000 (UTC)
From:      Jamie Gritton <jamie@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org
Subject:   svn commit: r292968 - stable/10/etc/rc.d
Message-ID:  <201512310126.tBV1Qhhg095462@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jamie
Date: Thu Dec 31 01:26:43 2015
New Revision: 292968
URL: https://svnweb.freebsd.org/changeset/base/292968

Log:
  MFC r287220:
  
    Fix a conversion error in rc.d/jail

Modified:
  stable/10/etc/rc.d/jail
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/etc/rc.d/jail
==============================================================================
--- stable/10/etc/rc.d/jail	Thu Dec 31 01:24:16 2015	(r292967)
+++ stable/10/etc/rc.d/jail	Thu Dec 31 01:26:43 2015	(r292968)
@@ -239,7 +239,7 @@ parse_options()
 
 		eval : \${jail_${_jv}_mount_enable:=${jail_mount_enable:-NO}}
 		if checkyesno jail_${_jv}_mount_enable; then
-			echo "	allow.mount;" >> $_conf
+			echo "	allow.mount;"
 		fi
 
 		extract_var $_jv set_hostname_allow allow.set_hostname YN NO



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201512310126.tBV1Qhhg095462>