mirror of
https://github.com/NLnetLabs/dnst.git
synced 2026-08-22 23:52:27 +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.
8 lines
117 B
Bash
8 lines
117 B
Bash
#!/bin/sh -e
|
|
|
|
case "$1" in
|
|
upgrade|remove)
|
|
# Remove symbolic links
|
|
rm -f /usr/bin/ldns-nsec3-hash
|
|
;;
|
|
esac |