Files
Ximon EighteenandGitHub 4f12ded4e0 Package dnst as DEB & RPM packages, and Docker images. (#22)
Note:
- Man pages have to be generated via `make man` and committed to Git to be included in the generated packages.
- Docker images are built but not yet published to Docker Hub as the required automation credentials have not yet been provisioned.
2025-06-04 10:34:56 +02:00

14 lines
372 B
Bash

#!/bin/sh -e
case "$1" in
configure)
# Create symbolic links
ln -f -s /usr/bin/dnst /usr/bin/ldns-keygen
ln -f -s /usr/bin/dnst /usr/bin/ldns-key2ds
ln -f -s /usr/bin/dnst /usr/bin/ldns-nsec3-hash
ln -f -s /usr/bin/dnst /usr/bin/ldns-notify
ln -f -s /usr/bin/dnst /usr/bin/ldns-signzone
ln -f -s /usr/bin/dnst /usr/bin/ldns-update
;;
esac