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.13
|
|
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
|
|
eaf195c4ed5f75467082b619074292c9f43935adaaa30d591dbbeb3e2bade297c36c933063966416f4eb786ac395f25ef09c518dd490125aa83df1bf966417e7 internal.conf
|
|
28c917fe7f69643887097553312c4f1ffc747dffdbf150430e6c4b2e5833567922810716cb59a27887915664777ac3263be3c826956f504499f0ebdcc0b3aac5 auth-zones.conf
|
|
3d62401e844bed8800cc2a986cbe68c8412d451321f23536c9eddc91b11ca5f2f8525af10398fced05452ce7bd75adcc8327cc4580a4034bbbc3aaf8da52ff65 redxen.eu"
|