Files
NLnetLabs-dnst/pkg/test-scripts/test-dnst.sh
T
Jannik PetersandGitHub 9c1d36a3af Separate ldns replacement package (#145)
* 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
2026-03-05 13:11:30 +01:00

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