app-admin/restart_services: minor default config change
authorMarc Schiffbauer <mschiff@gentoo.org>
Mon, 7 Sep 2015 14:11:48 +0000 (16:11 +0200)
committerMarc Schiffbauer <mschiff@gentoo.org>
Mon, 7 Sep 2015 14:14:03 +0000 (16:14 +0200)
enable /etc/restart_services.d/*.conf by default
Fixes bug #558006

app-admin/restart_services/restart_services-0.13.0-r1.ebuild [new file with mode: 0644]

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 (file)
index 0000000..87fa490
--- /dev/null
@@ -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
+}