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 E77381384C3 for ; Mon, 7 Sep 2015 14:14:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 56EED1419A; Mon, 7 Sep 2015 14:14:19 +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 E84BB1419A for ; Mon, 7 Sep 2015 14:14:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id ADBD0340864 for ; Mon, 7 Sep 2015 14:14:17 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 11B2716D for ; Mon, 7 Sep 2015 14:14:15 +0000 (UTC) From: "Marc Schiffbauer" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Marc Schiffbauer" Message-ID: <1441635243.2a30d4dfbe3f47f57e6e4e7937d9154bc5adec9e.mschiff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/restart_services/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-admin/restart_services/restart_services-0.13.0-r1.ebuild X-VCS-Directories: app-admin/restart_services/ X-VCS-Committer: mschiff X-VCS-Committer-Name: Marc Schiffbauer X-VCS-Revision: 2a30d4dfbe3f47f57e6e4e7937d9154bc5adec9e X-VCS-Branch: master Date: Mon, 7 Sep 2015 14:14:15 +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: f6958594-45a5-4287-b175-49c7d66be525 X-Archives-Hash: 35ae11c001132c3683ac93fd3e7725ba commit: 2a30d4dfbe3f47f57e6e4e7937d9154bc5adec9e Author: Marc Schiffbauer gentoo org> AuthorDate: Mon Sep 7 14:11:48 2015 +0000 Commit: Marc Schiffbauer gentoo org> CommitDate: Mon Sep 7 14:14:03 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a30d4df app-admin/restart_services: minor default config change enable /etc/restart_services.d/*.conf by default Fixes bug #558006 .../restart_services-0.13.0-r1.ebuild | 38 ++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/app-admin/restart_services/restart_services-0.13.0-r1.ebuild b/app-admin/restart_services/restart_services-0.13.0-r1.ebuild new file mode 100644 index 0000000..87fa490 --- /dev/null +++ b/app-admin/restart_services/restart_services-0.13.0-r1.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +DESCRIPTION="Tool to manage OpenRC services that need to be restarted" +HOMEPAGE="https://dev.gentoo.org/~mschiff/restart_services/" +SRC_URI="https://dev.gentoo.org/~mschiff/src/${PN}/${P}.tgz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="" +RDEPEND=" + app-admin/lib_users + sys-apps/openrc +" + +src_install() { + dosbin restart_services + doman restart_services.1 + keepdir /etc/restart_services.d + insinto /etc + doins restart_services.conf + dodoc README CHANGES + + sed -i 's/^#include/include/' "${D}"/etc/restart_services.conf + cat>"${D}"/etc/restart_services.d/00-local.conf<<-EOF + # You may put your local changes here or in any other *.conf file + # in this directory so you can leave /etc/restart_services.conf as is. + # Example: + # *extend* SV_ALWAYS to match 'myservice' + # SV_ALWAYS+=( myservice ) + EOF +}