Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 1 Dec 2012 15:53:19 +0000 (UTC)
From:      Chris Rees <crees@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org
Subject:   svn commit: r243755 - stable/8/etc
Message-ID:  <201212011553.qB1FrJR0042303@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: crees (ports committer)
Date: Sat Dec  1 15:53:19 2012
New Revision: 243755
URL: http://svnweb.freebsd.org/changeset/base/243755

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

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

Modified: stable/8/etc/rc.subr
==============================================================================
--- stable/8/etc/rc.subr	Sat Dec  1 15:46:27 2012	(r243754)
+++ stable/8/etc/rc.subr	Sat Dec  1 15:53:19 2012	(r243755)
@@ -302,8 +302,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
 			\#!*)
@@ -746,7 +746,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



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