67 lines
2.5 KiB
Plaintext
67 lines
2.5 KiB
Plaintext
# Contributor: Alex Denes <caskd@redxen.eu>
|
|
# Maintainer: Alex Denes <caskd@redxen.eu>
|
|
pkgname=redxen-config-unbound
|
|
pkgver=2021.01.14
|
|
pkgrel=0
|
|
pkgdesc="Unbound configurations and some other stuff."
|
|
url="https://git.redxen.eu/RedXen"
|
|
arch="noarch"
|
|
license="none"
|
|
depends="alpine-baselayout unbound ca-certificates-bundle dns-root-hints dnssec-root"
|
|
checkdepends="bind-tools"
|
|
subpackages="$pkgname-acl $pkgname-rctrl $pkgname-internal $pkgname-auth"
|
|
source="
|
|
includes.conf
|
|
base.conf
|
|
acl.conf
|
|
rctrl.conf
|
|
internal.conf
|
|
|
|
auth-zones.conf
|
|
zones/redxen.eu
|
|
"
|
|
options="checkroot"
|
|
builddir="$srcdir"
|
|
|
|
check() {
|
|
msg "Checking configuration validity"
|
|
/usr/sbin/unbound-checkconf base.conf
|
|
/usr/sbin/unbound-checkconf acl.conf
|
|
/usr/sbin/unbound-checkconf rctrl.conf
|
|
/usr/sbin/unbound-checkconf internal.conf
|
|
|
|
# Cannot be checked because it expects files in a read-only path, not crucial
|
|
#/usr/sbin/unbound-checkconf auth-zones.conf
|
|
/usr/sbin/named-checkzone redxen.eu ./redxen.eu
|
|
}
|
|
|
|
package() {
|
|
install -Dm644 "$srcdir"/includes.conf "$pkgdir"/etc/unbound/includes.conf
|
|
install -Dm644 "$srcdir"/base.conf "$pkgdir"/etc/unbound/base.conf
|
|
}
|
|
|
|
acl() {
|
|
install -Dm644 "$srcdir"/acl.conf "$subpkgdir"/etc/unbound/acl.conf
|
|
}
|
|
|
|
rctrl() {
|
|
install -Dm644 "$srcdir"/rctrl.conf "$subpkgdir"/etc/unbound/rctrl.conf
|
|
}
|
|
|
|
internal() {
|
|
install -Dm644 "$srcdir"/internal.conf "$subpkgdir"/etc/unbound/internal.conf
|
|
}
|
|
|
|
auth() {
|
|
install -Dm644 "$srcdir"/redxen.eu "$subpkgdir"/etc/unbound/zones/redxen.eu
|
|
install -Dm644 "$srcdir"/auth-zones.conf "$subpkgdir"/etc/unbound/auth-zones.conf
|
|
}
|
|
|
|
sha512sums="f402b87071a3059992242b7dbce0aaea2f20ec4e5fc4e855160d5ebc75be7dd3d4cb698c758882eee749d12d263a5c1b5818a45e3867cdf4258016d89ce8181e includes.conf
|
|
d3754ced9d8055ff7f1d364a93c403bba3f220a60ea519bceee5e9c43112d6a00d20d15cf659fdd6ad6834cf14afd6ecb5d9e1497ff2932572fd970750655749 base.conf
|
|
75709787e0872197c83def93b343550934f6b2e4903873aaf72f357fb8b4a1d7c5b8ba84913f052ad01aeca03f58ca589a22bf867c1c2e40e01f9588c7c580c4 acl.conf
|
|
d94ad338e2ea43c3ecdc62c861eddc0bb706807b738dd985309bcdf0b5fb435d7260bf272e2bbe40a774ec5b8fa49cbf23624c2c5213eea94f4f14aa3720abfa rctrl.conf
|
|
a9edb1504533ed3e54dd6fa193ea30680b760580ff218466d2ad5c2509e7738f378659850f30df506ad427867822b72d11764407505c62c5ec18c1cd6cb0efa5 internal.conf
|
|
28c917fe7f69643887097553312c4f1ffc747dffdbf150430e6c4b2e5833567922810716cb59a27887915664777ac3263be3c826956f504499f0ebdcc0b3aac5 auth-zones.conf
|
|
3ef758b56b89a4a90cd3f2a6bb6e2d265f194f1f9406042071df336c9124bad7167da443685a528518580f8f853060547b0db763726003cb1143f28ab4f59767 redxen.eu"
|