From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 152B7139897 for ; Tue, 25 Aug 2015 11:03:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B4677E081D; Tue, 25 Aug 2015 11:03:48 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6004DE081D for ; Tue, 25 Aug 2015 11:03:48 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 533F333FDBF for ; Tue, 25 Aug 2015 11:03:47 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 98CFA155 for ; Tue, 25 Aug 2015 11:03:33 +0000 (UTC) From: "Sergey Popov" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sergey Popov" Message-ID: <1440500542.2fe4a3a6e01fed2b08daeb8a16d6104ab03d2a41.pinkbyte@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/quagga/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/quagga/quagga-0.99.24.1-r1.ebuild net-misc/quagga/quagga-0.99.24.1.ebuild X-VCS-Directories: net-misc/quagga/ X-VCS-Committer: pinkbyte X-VCS-Committer-Name: Sergey Popov X-VCS-Revision: 2fe4a3a6e01fed2b08daeb8a16d6104ab03d2a41 X-VCS-Branch: master Date: Tue, 25 Aug 2015 11:03:33 +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: 545c02e4-fcde-4664-9d35-27e833064090 X-Archives-Hash: f689dac6578f2e6f757ef10c596566f4 commit: 2fe4a3a6e01fed2b08daeb8a16d6104ab03d2a41 Author: Sergey Popov gentoo org> AuthorDate: Tue Aug 25 11:02:22 2015 +0000 Commit: Sergey Popov gentoo org> CommitDate: Tue Aug 25 11:02:22 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2fe4a3a6 net-misc/quagga: create directory for PID files during src_install Directory for PID files was not created during src_install, which makes impossible to use Quagga daemons before first reboot for systemd users Reported-by: Olipro gmail.com> Gentoo-Bug: 558194 Package-Manager: portage-2.2.20 .../quagga/{quagga-0.99.24.1.ebuild => quagga-0.99.24.1-r1.ebuild} | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/net-misc/quagga/quagga-0.99.24.1.ebuild b/net-misc/quagga/quagga-0.99.24.1-r1.ebuild similarity index 95% rename from net-misc/quagga/quagga-0.99.24.1.ebuild rename to net-misc/quagga/quagga-0.99.24.1-r1.ebuild index 57e23b3..c8af9d0 100644 --- a/net-misc/quagga/quagga-0.99.24.1.ebuild +++ b/net-misc/quagga/quagga-0.99.24.1-r1.ebuild @@ -103,6 +103,11 @@ src_install() { fowners root:quagga /etc/quagga fperms 0770 /etc/quagga + # Path for PIDs before first reboot should be created here, bug #558194 + dodir /run/quagga + fowners quagga:quagga /run/quagga + fperms 0770 /run/quagga + # Install systemd-related stuff, bug #553136 systemd_dotmpfilesd "${FILESDIR}/systemd/quagga.conf" systemd_dounit "${FILESDIR}/systemd/zebra.service"