mirror of
https://github.com/NLnetLabs/dnst.git
synced 2026-09-10 03:47:45 +02:00
14 lines
275 B
Bash
14 lines
275 B
Bash
#!/bin/sh -e
|
|
|
|
case "$1" in
|
|
upgrade|remove)
|
|
# Remove symbolic links
|
|
rm -f /usr/bin/ldns-keygen
|
|
rm -f /usr/bin/ldns-key2ds
|
|
rm -f /usr/bin/ldns-nsec3-hash
|
|
rm -f /usr/bin/ldns-notify
|
|
rm -f /usr/bin/ldns-signzone
|
|
rm -f /usr/bin/ldns-update
|
|
;;
|
|
esac
|