From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id AE57C138350 for ; Mon, 9 Mar 2020 00:33:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D161BE08FF; Mon, 9 Mar 2020 00:33:07 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B0B1FE08FF for ; Mon, 9 Mar 2020 00:33:07 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4C47534F278 for ; Mon, 9 Mar 2020 00:33:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D70A114C for ; Mon, 9 Mar 2020 00:33:03 +0000 (UTC) From: "Robin H. Johnson" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Robin H. Johnson" Message-ID: <1583713839.27a1811ec6e1d20bc0835105a157e757f2a74dec.robbat2@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/memcached/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/memcached/files/memcached.init2 X-VCS-Directories: net-misc/memcached/files/ X-VCS-Committer: robbat2 X-VCS-Committer-Name: Robin H. Johnson X-VCS-Revision: 27a1811ec6e1d20bc0835105a157e757f2a74dec X-VCS-Branch: master Date: Mon, 9 Mar 2020 00:33:03 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 289378d3-27b4-48f5-9a3a-02f5987a70a1 X-Archives-Hash: 6ad484750bf6b5279d2992b6e3dffda0 commit: 27a1811ec6e1d20bc0835105a157e757f2a74dec Author: Robin H. Johnson gentoo org> AuthorDate: Mon Mar 9 00:30:39 2020 +0000 Commit: Robin H. Johnson gentoo org> CommitDate: Mon Mar 9 00:30:39 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27a1811e net-misc/memcached: fix bashism in memcached initd Signed-off-by: Robin H. Johnson gentoo.org> net-misc/memcached/files/memcached.init2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net-misc/memcached/files/memcached.init2 b/net-misc/memcached/files/memcached.init2 index 4bdfec6b945..412e8e0a953 100644 --- a/net-misc/memcached/files/memcached.init2 +++ b/net-misc/memcached/files/memcached.init2 @@ -10,7 +10,7 @@ if [ -n "${CONF}" ]; then PIDFILE="${PIDBASE}.${CONF}.pid" CONFSRC="${CONFBASE}.${CONF}" if [ -f "${CONFSRC}" ]; then - source "${CONFSRC}" + . "${CONFSRC}" else eerror "The configuration file $CONFSRC was not found!" fi