diff options
author | Jakub Jirutka <jakub@jirutka.cz> | 2019-12-08 21:56:47 +0100 |
---|---|---|
committer | Jakub Jirutka <jakub@jirutka.cz> | 2019-12-08 21:56:54 +0100 |
commit | 5073f51d55a2ecb0956c308ebedceb703f31c366 (patch) | |
tree | f58dce10af8d5db4654b21c75759e21a0d5203b8 | |
parent | b57d86b4f0b75085baba8a57bd0e327a12293648 (diff) | |
download | aports-5073f51d55a2ecb0956c308ebedceb703f31c366.tar.bz2 aports-5073f51d55a2ecb0956c308ebedceb703f31c366.tar.xz |
community/kea: remove subpackage kea-keactrl
https://gitlab.isc.org/isc-projects/kea/issues/767#note_71103
-rw-r--r-- | community/kea/APKBUILD | 18 |
1 files changed, 5 insertions, 13 deletions
diff --git a/community/kea/APKBUILD b/community/kea/APKBUILD index cd00a7b137..1bc8891bda 100644 --- a/community/kea/APKBUILD +++ b/community/kea/APKBUILD @@ -3,7 +3,7 @@ # Contributor: Jakub Jirutka <jakub@jirutka.cz> pkgname=kea pkgver=1.7.2 -pkgrel=4 +pkgrel=5 pkgdesc="DHCPv4 and DHCPv6 server from ISC" url="http://kea.isc.org" # armhf, armv7: limited by log4cplus @@ -37,7 +37,6 @@ subpackages=" $pkgname-dhcp6 $pkgname-hooks $pkgname-http - $pkgname-keactrl::noarch $pkgname-shell::noarch $pkgname-utils $pkgname-common @@ -98,9 +97,10 @@ package() { done setcap 'cap_net_raw=+ep' ./usr/sbin/kea-dhcp6 - install -d -m 0750 -o kea -g kea \ - "$pkgdir"/var/log/kea \ - "$pkgdir"/var/lib/kea + install -d -m 0750 -o kea -g kea ./var/log/kea ./var/lib/kea + + # keactrl is unnecessary since we provide OpenRC init scripts. + rm ./usr/sbin/keactrl ./etc/kea/keactrl.conf rm -Rf ./run } @@ -174,14 +174,6 @@ http() { amove ./usr/lib/libkea-http.so* } -keactrl() { - pkgdesc="Kea DHCP Process Manager" - depends="" - - amove ./usr/sbin/keactrl - amove ./etc/kea/keactrl.conf -} - shell() { pkgdesc="Text client for Kea DHCP Control Agent" depends="python3" |