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 8D1D6139695 for ; Tue, 16 May 2017 14:09:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9929FE0BD4; Tue, 16 May 2017 14:09:14 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6A6B2E0BB2 for ; Tue, 16 May 2017 14:09:14 +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 6D6613416A1 for ; Tue, 16 May 2017 14:09:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CFF99746D for ; Tue, 16 May 2017 14:09:11 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1494943742.3c6725adb330e6ec772a5ac67b84d9f328f1af38.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-vpn/openvpn/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-vpn/openvpn/openvpn-2.3.12.ebuild net-vpn/openvpn/openvpn-2.3.15.ebuild net-vpn/openvpn/openvpn-2.4.2.ebuild net-vpn/openvpn/openvpn-9999.ebuild X-VCS-Directories: net-vpn/openvpn/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 3c6725adb330e6ec772a5ac67b84d9f328f1af38 X-VCS-Branch: master Date: Tue, 16 May 2017 14:09:11 +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-Archives-Salt: ae5e11e1-1d1d-434f-abcf-41e607ef9898 X-Archives-Hash: 490f0e51027d5d0188b68ead72f2998a commit: 3c6725adb330e6ec772a5ac67b84d9f328f1af38 Author: Michał Górny gentoo org> AuthorDate: Tue May 16 13:48:47 2017 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue May 16 14:09:02 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c6725ad net-vpn/openvpn: [QA] Fix use of path_exists net-vpn/openvpn/openvpn-2.3.12.ebuild | 2 +- net-vpn/openvpn/openvpn-2.3.15.ebuild | 2 +- net-vpn/openvpn/openvpn-2.4.2.ebuild | 2 +- net-vpn/openvpn/openvpn-9999.ebuild | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/net-vpn/openvpn/openvpn-2.3.12.ebuild b/net-vpn/openvpn/openvpn-2.3.12.ebuild index a537ed2b303..f19a6f16328 100644 --- a/net-vpn/openvpn/openvpn-2.3.12.ebuild +++ b/net-vpn/openvpn/openvpn-2.3.12.ebuild @@ -99,7 +99,7 @@ pkg_postinst() { enewgroup openvpn enewuser openvpn "" "" "" openvpn - if [ path_exists -o "${ROOT}/etc/openvpn/*/local.conf" ] ; then + if path_exists -o "${EROOT%/}"/etc/openvpn/*/local.conf ; then ewarn "WARNING: The openvpn init script has changed" ewarn "" fi diff --git a/net-vpn/openvpn/openvpn-2.3.15.ebuild b/net-vpn/openvpn/openvpn-2.3.15.ebuild index 561522d7e4d..9ad833e7b9b 100644 --- a/net-vpn/openvpn/openvpn-2.3.15.ebuild +++ b/net-vpn/openvpn/openvpn-2.3.15.ebuild @@ -99,7 +99,7 @@ pkg_postinst() { enewgroup openvpn enewuser openvpn "" "" "" openvpn - if [ path_exists -o "${ROOT}/etc/openvpn/*/local.conf" ] ; then + if path_exists -o "${EROOT%/}"/etc/openvpn/*/local.conf ; then ewarn "WARNING: The openvpn init script has changed" ewarn "" fi diff --git a/net-vpn/openvpn/openvpn-2.4.2.ebuild b/net-vpn/openvpn/openvpn-2.4.2.ebuild index 80a744f283b..661fd3e3127 100644 --- a/net-vpn/openvpn/openvpn-2.4.2.ebuild +++ b/net-vpn/openvpn/openvpn-2.4.2.ebuild @@ -123,7 +123,7 @@ pkg_postinst() { enewgroup openvpn enewuser openvpn "" "" "" openvpn - if [ path_exists -o "${ROOT}/etc/openvpn/*/local.conf" ] ; then + if path_exists -o "${EROOT%/}"/etc/openvpn/*/local.conf ; then ewarn "WARNING: The openvpn init script has changed" ewarn "" fi diff --git a/net-vpn/openvpn/openvpn-9999.ebuild b/net-vpn/openvpn/openvpn-9999.ebuild index 398cf8fad2a..be066f67cb9 100644 --- a/net-vpn/openvpn/openvpn-9999.ebuild +++ b/net-vpn/openvpn/openvpn-9999.ebuild @@ -122,7 +122,7 @@ pkg_postinst() { enewgroup openvpn enewuser openvpn "" "" "" openvpn - if [ path_exists -o "${ROOT}/etc/openvpn/*/local.conf" ] ; then + if path_exists -o "${EROOT%/}"/etc/openvpn/*/local.conf ; then ewarn "WARNING: The openvpn init script has changed" ewarn "" fi