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

14 lines
107 B
Bash

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