From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1Pp1tR-0000LW-DD for garchives@archives.gentoo.org; Mon, 14 Feb 2011 17:07:21 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 82AD9E0B6E; Mon, 14 Feb 2011 17:07:14 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 55CF3E0B6E for ; Mon, 14 Feb 2011 17:07:14 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E00DE1B40B9 for ; Mon, 14 Feb 2011 17:07:13 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 3B67D80073 for ; Mon, 14 Feb 2011 17:07:13 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <35d38c3561fa5e16c6d2e00e033e48dc200ae42c.vapier@gentoo> Subject: [gentoo-commits] proj/openrc:master commit in: init.d/ X-VCS-Repository: proj/openrc X-VCS-Files: init.d/local.in X-VCS-Directories: init.d/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: 35d38c3561fa5e16c6d2e00e033e48dc200ae42c Date: Mon, 14 Feb 2011 17:07:13 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: e3d3cf9ac957ea06841a2f920296f96d commit: 35d38c3561fa5e16c6d2e00e033e48dc200ae42c Author: Mike Frysinger gentoo org> AuthorDate: Sun Feb 6 22:24:52 2011 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Mon Feb 14 17:06:58 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/openrc.git;a=3D= commit;h=3D35d38c35 local: quote script names to handle spaces Signed-off-by: Mike Frysinger gentoo.org> --- init.d/local.in | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/init.d/local.in b/init.d/local.in index 5583fea..4db492e 100644 --- a/init.d/local.in +++ b/init.d/local.in @@ -16,7 +16,7 @@ start() =20 local file for file in @SYSCONFDIR@/local.d/*.start ; do - [ -x $file ] && $file + [ -x "$file" ] && "$file" done =20 if type local_start >/dev/null 2>&1; then @@ -36,7 +36,7 @@ stop() =20 local file for file in @SYSCONFDIR@/local.d/*.stop; do - [ -x $file ] && $file + [ -x "$file" ] && "$file" done =20 if type local_start >/dev/null 2>&1; then