From e24741492bb524784fb9e06f458a43d9d79cfa81 Mon Sep 17 00:00:00 2001 From: Kevin Daudt Date: Mon, 4 Nov 2019 18:40:59 +0000 Subject: [PATCH] main/bind: depend on bind-tools The install script needs to call rndc-confgen to generate a key which is required for reloading to work. 955e379151 (main/bind: add support for "reload", 2019-10-19) added support for reload, but that causes an issues when installing bind, because rndc-confgen is in the bind-tools subpackage, which is not available if you just install bind. Fix this by having bind depend on bind-tools. Fixes #10935 --- main/bind/APKBUILD | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main/bind/APKBUILD b/main/bind/APKBUILD index 8e7c3b2820..b27093d805 100644 --- a/main/bind/APKBUILD +++ b/main/bind/APKBUILD @@ -10,14 +10,14 @@ _ver=${pkgver%_p*} _p=${pkgver#*_p} _major=${pkgver%%.*} [ "$_p" != "$pkgver" ] && _ver="${_ver}-P$_p" -pkgrel=3 +pkgrel=4 pkgdesc="The ISC DNS server" url="https://www.isc.org" arch="all" license="MPL-2.0" pkgusers="named" pkggroups="named" -depends="dns-root-hints" +depends="dns-root-hints bind-tools" depends_dev="$pkgname $pkgname-plugins $pkgname-tools" depends_libs="" depends_plugins="$pkgname" -- GitLab