mirror of
https://github.com/NLnetLabs/dnst.git
synced 2026-08-17 21:25:51 +02:00
* Move ldns obsoletion to separate package * Remove proposed channel from pkg-test The packages published in proposed are so outdated, they fail pkg-test anyway. * Remove EOL versions from build targets * Update Dockerfile base image to alpine 2.23 * Remove systemd macros from scriptlets * Change version to 0.2.0-alpha1
24 lines
358 B
Bash
24 lines
358 B
Bash
#!/usr/bin/env bash
|
|
|
|
set -eo pipefail
|
|
set -x
|
|
|
|
case $1 in
|
|
post-install)
|
|
# Run some sanity checks
|
|
dnst --version
|
|
dnst nsec3-hash nlnetlabs.nl
|
|
man dnst
|
|
man dnst-keygen
|
|
;;
|
|
|
|
post-upgrade)
|
|
# Nothing to do.
|
|
# Run some sanity checks
|
|
dnst --version
|
|
dnst nsec3-hash nlnetlabs.nl
|
|
man dnst
|
|
man dnst-keygen
|
|
;;
|
|
esac
|