mirror of
https://github.com/NLnetLabs/dnst.git
synced 2026-08-22 15:42:29 +02:00
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.
14 lines
372 B
Bash
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
|