diff options
author | Anton Fischl <github@fischl-online.de> | 2023-09-13 11:25:44 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2023-09-13 11:25:44 +0200 |
commit | 465e4825788695ac53930c04e576cd0ab111fb5b (patch) | |
tree | 3494b0be8108dc17e7feed191019f1b6583a7a42 /www-apps/icingaweb2-module-director | |
parent | www-apps/icingaweb2-module-director: change maintainer (diff) | |
download | gentoo-465e4825788695ac53930c04e576cd0ab111fb5b.tar.gz gentoo-465e4825788695ac53930c04e576cd0ab111fb5b.tar.bz2 gentoo-465e4825788695ac53930c04e576cd0ab111fb5b.zip |
www-apps/icingaweb2-module-director: update 9999
Signed-off-by: Anton Fischl <github@fischl-online.de>
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'www-apps/icingaweb2-module-director')
3 files changed, 75 insertions, 25 deletions
diff --git a/www-apps/icingaweb2-module-director/files/director b/www-apps/icingaweb2-module-director/files/director new file mode 100644 index 000000000000..b2721d1e8dcd --- /dev/null +++ b/www-apps/icingaweb2-module-director/files/director @@ -0,0 +1,23 @@ +#!/sbin/openrc-run + +description="Icinga2 Director Daemon" +supervisor=supervise-daemon +respawn_period="${respawn_period:-30}" +term_type="${term_type:-linux}" +command=/usr/share/icingaweb2/bin/icinga-director.sh +pidfile="/run/${RC_SVCNAME}.pid" +command_user="nobody:icingaweb2" + +depend() { + need apache2 mysql php-fpm icinga2 +} + +start_pre() { + chgrp icingaweb2 /usr/share/icingaweb2/bin/icingacli + export EINFO_QUIET="${quiet:-yes}" +} + +stop_pre() +{ + export EINFO_QUIET="${quiet:-yes}" +} diff --git a/www-apps/icingaweb2-module-director/files/icinga-director.sh b/www-apps/icingaweb2-module-director/files/icinga-director.sh new file mode 100644 index 000000000000..f0a9db21a368 --- /dev/null +++ b/www-apps/icingaweb2-module-director/files/icinga-director.sh @@ -0,0 +1,2 @@ +#!/usr/bin/env sh +/usr/share/icingaweb2/bin/icingacli director daemon run diff --git a/www-apps/icingaweb2-module-director/icingaweb2-module-director-9999.ebuild b/www-apps/icingaweb2-module-director/icingaweb2-module-director-9999.ebuild index c9a76d37b383..370c6d78fa9b 100644 --- a/www-apps/icingaweb2-module-director/icingaweb2-module-director-9999.ebuild +++ b/www-apps/icingaweb2-module-director/icingaweb2-module-director-9999.ebuild @@ -1,50 +1,75 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -DESCRIPTION="Icinga Web 2 plugin for configuration" -HOMEPAGE="https://dev.icinga.org/projects/icingaweb2-module-director/" inherit systemd -if [[ "${PV}" == 9999 ]]; then + +DESCRIPTION="Icinga Web 2 plugin for configuration" +HOMEPAGE="https://github.com/Icinga/icingaweb2-module-director/" + +if [[ ${PV} == *9999 ]]; then inherit git-r3 - EGIT_REPO_URI="https://github.com/Icinga/icingaweb2-module-director.git" + EGIT_REPO_URI="https://github.com/Icinga/${PN}.git" else KEYWORDS="~amd64 ~x86" - MY_PN="icingaweb2-module-director" - SRC_URI="https://codeload.github.com/Icinga/${MY_PN}/tar.gz/v${PV} -> ${P}.tar.gz" - S="${WORKDIR}/${MY_PN}-${PV}" + SRC_URI="https://codeload.github.com/Icinga/${PN}/tar.gz/v${PV} -> ${P}.tar.gz" fi LICENSE="GPL-2" SLOT="0" +# Dependencies according to https://github.com/Icinga/icingaweb2-module-director/blob/master/doc/02-Installation.md +IUSE="php_targets_php8-1" -DEPEND=">=net-analyzer/icinga2-2.6.0 - >=www-apps/icingaweb2-2.6.0 - || ( - dev-lang/php:7.3[curl,iconv,pcntl,posix,sockets] - dev-lang/php:7.4[curl,iconv,pcntl,posix,sockets] - dev-lang/php:8.0[curl,iconv,pcntl,posix,sockets] - ) +PHP_DEPEND=" + php_targets_php8-1? ( dev-lang/php:8.1[curl,iconv,pcntl,posix,sockets] ) +" +DEPEND=" acct-group/icingaweb2 - acct-user/icingadirector" -RDEPEND="${DEPEND}" + acct-user/icingadirector +" +RDEPEND=" + ${PHP_DEPEND} + ${DEPEND} + >=www-apps/icingaweb2-module-incubator-0.18.0 + >=dev-libs/icinga-php-library-0.5.0 + >=dev-libs/icinga-php-thirdparty-0.9.0 + >=www-apps/icingaweb2-2.9.0 +" src_install() { - insinto "/usr/share/icingaweb2/modules/director/" - doins -r "${S}"/* + insinto /usr/share/icingaweb2/modules/${PN##*-}/ + doins -r . + + exeinto /usr/share/icingaweb2/bin/ + doexe "${FILESDIR}"/icinga-director.sh + + doinitd "${FILESDIR}"/director + keepdir /var/lib/${PN} fowners icingadirector:icingaweb2 /var/lib/${PN} fperms 0750 /var/lib/${PN} sed -e "s|/usr/bin/icingacli|/usr/share/icingaweb2/bin/icingacli|g" \ - contrib/systemd/icinga-director.service > "${T}/icinga-director.service" \ + contrib/systemd/icinga-director.service > "${T}"/icinga-director.service \ || die "failed to patch icinga-director.service" - systemd_dounit "${T}/icinga-director.service" + systemd_dounit "${T}"/icinga-director.service } pkg_postinst() { - elog "Please see the following documentation for installation" - elog "https://github.com/Icinga/icingaweb2-module-director/blob/master/doc/02-Installation.md" - elog "or upgrading" - elog "https://github.com/Icinga/icingaweb2-module-director/blob/master/doc/05-Upgrading.md" + # According to PMS this can be a space-separated list of version + # numbers, even though in practice it is typically just one. + local oldver + for oldver in ${REPLACING_VERSIONS}; do + if ver_test "${oldver}" -lt "1.10.0"; then + ewarn "You are upgrading from ${oldver} to ${PVR}" + ewarn "please read https://github.com/Icinga/icingaweb2-module-director/blob/master/doc/05-Upgrading.md#upgrade-to-1.10.x" + ewarn "for breaking changes" + ewarn + ewarn "Also, don't forget to upgrade database schema." + ewarn "Otherwise icingaweb2-module-director will not work!" + ewarn "(Web GUI => Configuration => Modules => director => Configuration)" + ewarn + break + fi + done } |