- More templating and inheritance - New commands + rx_replace + rx_install + rx_cpkgdir - More transparency with secrets being sourced as variables and replaced - Modularization of configs + telegraf + nginx (partial) + fastd + wireguard + unbound - Split of unbound configurations and bind zones - Bumping of key versions (rolling keys) + ZSK/KSK + OpenDKIM - Relaxed permission defaults and other smaller tweaks...
17 lines
304 B
Plaintext
17 lines
304 B
Plaintext
# Contributor: Alex Denes <caskd@redxen.eu>
|
|
# Maintainer: Alex Denes <caskd@redxen.eu>
|
|
|
|
. ../APKBUILD-secret.template
|
|
|
|
pkgver="$pkgver.01"
|
|
pkgrel=0
|
|
makedepends="fastd"
|
|
|
|
build() {
|
|
printf 'secret "%s";\n' "$(fastd --generate-key --machine-readable)" > secret.conf
|
|
}
|
|
|
|
package() {
|
|
rx_install secret.conf
|
|
}
|