diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2023-11-11 23:17:31 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2023-11-14 19:35:15 +0100 |
commit | 9597850f4683378b54cc2f5f8e792ae9f758ec28 (patch) | |
tree | 26b78f4a54b260d1b6246834a2cbd463010e8d0a /app-admin/restart-services | |
parent | app-backup/rdup: drop 1.1.15 (diff) | |
download | gentoo-9597850f4683378b54cc2f5f8e792ae9f758ec28.tar.gz gentoo-9597850f4683378b54cc2f5f8e792ae9f758ec28.tar.bz2 gentoo-9597850f4683378b54cc2f5f8e792ae9f758ec28.zip |
app-admin/restart-services: drop 0.17.0
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'app-admin/restart-services')
-rw-r--r-- | app-admin/restart-services/restart-services-0.17.0.ebuild | 63 |
1 files changed, 0 insertions, 63 deletions
diff --git a/app-admin/restart-services/restart-services-0.17.0.ebuild b/app-admin/restart-services/restart-services-0.17.0.ebuild deleted file mode 100644 index 5faa3c0459de..000000000000 --- a/app-admin/restart-services/restart-services-0.17.0.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -DESCRIPTION="Tool to manage OpenRC and systemd 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 ~arm ~arm64 ~ppc ~ppc64 ~sparc x86" -IUSE="" - -DEPEND="" -RDEPEND=" - app-admin/lib_users - || ( sys-apps/openrc sys-apps/systemd ) - app-portage/portage-utils -" - -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 -} - -pkg_postinst() { - local MAJOR MINOR - # migrate config data for versions < 0.13.2 - if [[ $REPLACING_VERSIONS ]]; then - MAJOR=${REPLACING_VERSIONS%%.*} - MINOR=${REPLACING_VERSIONS%.*} - MINOR=${MINOR#*.} - - if [[ $MAJOR -eq 0 && $MINOR -lt 14 ]]; then - einfo "Checking for old config" - if [[ -f /etc/restart_services.conf ]]; then - ewarn "Old config file found: /etc/restart_services.conf" - ewarn "It will be ignored so please migrate settings to a file in" - ewarn "/etc/restart-services.d/ and/or remove /etc/restart_services.conf" - fi - if [[ -d /etc/restart_services.d ]]; then - ewarn "Old config directory found: /etc/restart_services.d" - ewarn "It will be ignored so please migrate files to /etc/restart-services.d" - ewarn "and/or remove /etc/restart_services.d" - fi - einfo "done" - fi - fi -} |