Files
bsdports/crypto/ca-bundle/files/pkg-deinstall.in
2025-11-03 11:03:32 +02:00

14 lines
107 B
Bash

#!/bin/sh
set -x
case $2 in
DEINSTALL)
;;
POST-DEINSTALL)
certctl rehash
;;
esac
exit 0
#EOF