svn commit: r243756 - stable/7/etc

Chris Rees crees at FreeBSD.org
Sat Dec 1 15:54:54 UTC 2012


Author: crees (ports committer)
Date: Sat Dec  1 15:54:54 2012
New Revision: 243756
URL: http://svnweb.freebsd.org/changeset/base/243756

Log:
  MFC r242183:
  
  Allow spaces in _chroot
  
  Approved by:	hrs

Modified:
  stable/7/etc/rc.subr
Directory Properties:
  stable/7/etc/   (props changed)

Modified: stable/7/etc/rc.subr
==============================================================================
--- stable/7/etc/rc.subr	Sat Dec  1 15:53:19 2012	(r243755)
+++ stable/7/etc/rc.subr	Sat Dec  1 15:54:54 2012	(r243756)
@@ -286,8 +286,8 @@ _find_processes()
 
 	_pref=
 	if [ $_interpreter != "." ]; then	# an interpreted script
-		_script=${_chroot}${_chroot:+"/"}$_procname
-		if [ -r $_script ]; then
+		_script="${_chroot}${_chroot:+/}$_procname"
+		if [ -r "$_script" ]; then
 			read _interp < $_script	# read interpreter name
 			case "$_interp" in
 			\#!*)
@@ -710,7 +710,7 @@ run_rc_command()
 				return 1
 			fi
 
-			if [ ! -x ${_chroot}${_chroot:+"/"}${command} ]; then
+			if [ ! -x "${_chroot}${_chroot:+/}${command}" ]; then
 				warn "run_rc_command: cannot run $command"
 				return 1
 			fi


More information about the svn-src-all mailing list