Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 1 Dec 2012 15:46:27 +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-9@freebsd.org
Subject:   svn commit: r243754 - stable/9/etc
Message-ID:  <201212011546.qB1FkRT0041346@svn.freebsd.org>

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

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

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

Modified: stable/9/etc/rc.subr
==============================================================================
--- stable/9/etc/rc.subr	Sat Dec  1 15:25:41 2012	(r243753)
+++ stable/9/etc/rc.subr	Sat Dec  1 15:46:27 2012	(r243754)
@@ -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?201212011546.qB1FkRT0041346>