svn commit: r238605 - head/etc/rc.d

Dag-Erling Smorgrav des at FreeBSD.org
Wed Jul 18 23:01:24 UTC 2012


Author: des
Date: Wed Jul 18 23:01:23 2012
New Revision: 238605
URL: http://svn.freebsd.org/changeset/base/238605

Log:
  Move -n ${_jail} before ${_flags} so that any -n options in ${_flags}
  will override ours instead of the other way around.

Modified:
  head/etc/rc.d/jail

Modified: head/etc/rc.d/jail
==============================================================================
--- head/etc/rc.d/jail	Wed Jul 18 21:47:50 2012	(r238604)
+++ head/etc/rc.d/jail	Wed Jul 18 23:01:23 2012	(r238605)
@@ -641,7 +641,7 @@ jail_start()
 			i=$((i + 1))
 		done
 
-		eval ${_setfib} jail ${_flags} -n ${_jail} -i ${_rootdir} ${_hostname} \
+		eval ${_setfib} jail -n ${_jail} ${_flags} -i ${_rootdir} ${_hostname} \
 			\"${_addrl}\" ${_exec_start} > ${_tmp_jail} 2>&1 \
 			</dev/null
 


More information about the svn-src-all mailing list