From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-516157-garchives=archives.gentoo.org@lists.gentoo.org>
Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80])
	by finch.gentoo.org (Postfix) with ESMTP id 7E34F138010
	for <garchives@archives.gentoo.org>; Fri, 19 Oct 2012 18:05:22 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id A0359E0716;
	Fri, 19 Oct 2012 18:05:14 +0000 (UTC)
Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183])
	by pigeon.gentoo.org (Postfix) with ESMTP id 1F53F21C0B6
	for <gentoo-commits@lists.gentoo.org>; Fri, 19 Oct 2012 18:05:14 +0000 (UTC)
Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163])
	(using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits))
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id 8305B33DA82
	for <gentoo-commits@lists.gentoo.org>; Fri, 19 Oct 2012 18:05:13 +0000 (UTC)
Received: from localhost.localdomain (localhost [127.0.0.1])
	by hornbill.gentoo.org (Postfix) with ESMTP id 2E8DDE5436
	for <gentoo-commits@lists.gentoo.org>; Fri, 19 Oct 2012 18:05:12 +0000 (UTC)
From: "William Hubbs" <williamh@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "William Hubbs" <williamh@gentoo.org>
Message-ID: <1350669750.2ee3e9d95293ffb91ae9b5a9b4914b370e3e742f.WilliamH@OpenRC>
Subject: [gentoo-commits] proj/openrc:master commit in: init.d/
X-VCS-Repository: proj/openrc
X-VCS-Files: init.d/tmpfilesd.boot.in init.d/tmpfilesd.sysinit.in
X-VCS-Directories: init.d/
X-VCS-Committer: WilliamH
X-VCS-Committer-Name: William Hubbs
X-VCS-Revision: 2ee3e9d95293ffb91ae9b5a9b4914b370e3e742f
X-VCS-Branch: master
Date: Fri, 19 Oct 2012 18:05:12 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Archives-Salt: 28fba915-bce2-4bd6-9872-7a87dd51faff
X-Archives-Hash: 0326460b735596671575b173b9a05176

commit:     2ee3e9d95293ffb91ae9b5a9b4914b370e3e742f
Author:     William Hubbs <w.d.hubbs <AT> gmail <DOT> com>
AuthorDate: Fri Oct 19 18:02:30 2012 +0000
Commit:     William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Fri Oct 19 18:02:30 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/openrc.git;a=commit;h=2ee3e9d9

Fix bashism in tmpfilesd scripts

Reported-by: <pesa <AT> gentoo.org>

---
 init.d/tmpfilesd.boot.in    |    2 +-
 init.d/tmpfilesd.sysinit.in |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/init.d/tmpfilesd.boot.in b/init.d/tmpfilesd.boot.in
index 838bdd8..471c128 100644
--- a/init.d/tmpfilesd.boot.in
+++ b/init.d/tmpfilesd.boot.in
@@ -11,7 +11,7 @@ depend()
 
 start()
 {
-	ebegin "${description/Create/Creating}"
+	ebegin "Creating ${description#Create }"
 	@LIBEXECDIR@/sh/tmpfiles.sh --create ${tmpfiles_opts}
 	eend $?
 	return 0

diff --git a/init.d/tmpfilesd.sysinit.in b/init.d/tmpfilesd.sysinit.in
index 9a0dbe4..c4c2a2f 100644
--- a/init.d/tmpfilesd.sysinit.in
+++ b/init.d/tmpfilesd.sysinit.in
@@ -13,7 +13,7 @@ depend()
 
 start()
 {
-	ebegin "${description/Create/Creating}"
+	ebegin "Creating ${description#Create }"
 	@LIBEXECDIR@/sh/tmpfiles.sh --create ${tmpfiles_opts}
 	eend $?
 	return 0