Alex Denes
8df9fdc4ab
- 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...
15 lines
288 B
Plaintext
15 lines
288 B
Plaintext
. ../../APKBUILD.template
|
|
|
|
: ${pkgname:?"No package prefix provided"}
|
|
|
|
pkgname="$pkgname-cron-$_rx_pkgname"
|
|
pkgdesc="RedXen cronjobs: $_rx_pkgname"
|
|
depends="dcron"
|
|
_rx_fperm=544
|
|
|
|
package() {
|
|
for i in $source; do
|
|
_rx_installdir="/etc/periodic/$i" rx_install "$i" "$_rx_pkgname"
|
|
done
|
|
}
|