packages: Fix caroot deinstall command

The correct syntax is 'post-deinstall', not 'post-uninstall'.

MFC after:	3 days (stable/15 only)
Reviewed by:	jlduran, des
Differential Revision:	https://reviews.freebsd.org/D56109
Sponsored by:		https://www.patreon.com/bsdivy
This commit is contained in:
Lexi Winter
2026-03-29 19:57:23 +01:00
parent 5812415bee
commit 63ecedb3c2
+1 -1
View File
@@ -5,5 +5,5 @@ deps {
}
scripts: {
post-install = "/usr/sbin/certctl -D${PKG_ROOTDIR}/ ${PKG_METALOG:+-U -M $PKG_METALOG} rehash"
post-uninstall = "/usr/sbin/certctl -D${PKG_ROOTDIR}/ ${PKG_METALOG:+-U -M $PKG_METALOG} rehash"
post-deinstall = "/usr/sbin/certctl -D${PKG_ROOTDIR}/ ${PKG_METALOG:+-U -M $PKG_METALOG} rehash"
}