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 A93B7138334 for ; Sun, 23 Jun 2019 17:25:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B7F76E087F; Sun, 23 Jun 2019 17:25:09 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 9C49EE087F for ; Sun, 23 Jun 2019 17:25:09 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 2E18A3467C3 for ; Sun, 23 Jun 2019 17:25:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 060DA619 for ; Sun, 23 Jun 2019 17:25:06 +0000 (UTC) From: "Michael Orlitzky" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Orlitzky" Message-ID: <1561310363.58445a9bcfd0a8ea1a0a61a6137f41ee75316fab.mjo@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-im/openfire/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-im/openfire/openfire-4.2.3-r2.ebuild X-VCS-Directories: net-im/openfire/ X-VCS-Committer: mjo X-VCS-Committer-Name: Michael Orlitzky X-VCS-Revision: 58445a9bcfd0a8ea1a0a61a6137f41ee75316fab X-VCS-Branch: master Date: Sun, 23 Jun 2019 17:25:06 +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: 9400be8f-385c-4dad-8529-ac4a475fe023 X-Archives-Hash: 3f388eb41553e9ea2a957cb3f1d80262 commit: 58445a9bcfd0a8ea1a0a61a6137f41ee75316fab Author: Michael Orlitzky gentoo org> AuthorDate: Sun Jun 23 17:19:23 2019 +0000 Commit: Michael Orlitzky gentoo org> CommitDate: Sun Jun 23 17:19:23 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58445a9b net-im/openfire: fixup CONFIG_PROTECT handling in latest revision. My -r2 accidentally clobbers the existing value of CONFIG_PROTECT instead of appending to it. Oops. Fix it in place. Signed-off-by: Michael Orlitzky gentoo.org> Package-Manager: Portage-2.3.66, Repoman-2.3.11 net-im/openfire/openfire-4.2.3-r2.ebuild | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/net-im/openfire/openfire-4.2.3-r2.ebuild b/net-im/openfire/openfire-4.2.3-r2.ebuild index d504e403aba..dc79cda8b4b 100644 --- a/net-im/openfire/openfire-4.2.3-r2.ebuild +++ b/net-im/openfire/openfire-4.2.3-r2.ebuild @@ -41,8 +41,7 @@ src_compile() { src_install() { #Protect ssl key on upgrade dodir /etc/env.d/ - echo 'CONFIG_PROTECT="/opt/openfire/resources/security/"' > "${D}"/etc/env.d/98openfire - echo 'CONFIG_PROTECT="/opt/openfire/conf/"' > "${D}"/etc/env.d/98openfire + echo 'CONFIG_PROTECT="/opt/openfire/conf/ /opt/openfire/resources/security/"' > "${D}"/etc/env.d/98openfire newinitd "${FILESDIR}"/openfire-initd openfire newconfd "${FILESDIR}"/openfire-confd openfire