git: 72b848a3fe93 - stable/15 - packages: Fix caroot deinstall command
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 07 Apr 2026 11:27:00 UTC
The branch stable/15 has been updated by ivy:
URL: https://cgit.FreeBSD.org/src/commit/?id=72b848a3fe934453aac4d0d17a4f791bbb499815
commit 72b848a3fe934453aac4d0d17a4f791bbb499815
Author: Lexi Winter <ivy@FreeBSD.org>
AuthorDate: 2026-03-29 18:57:23 +0000
Commit: Lexi Winter <ivy@FreeBSD.org>
CommitDate: 2026-04-07 10:48:59 +0000
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
(cherry picked from commit 63ecedb3c2ce75a44d55b9424d74d94e294de313)
---
release/packages/ucl/caroot.ucl | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/release/packages/ucl/caroot.ucl b/release/packages/ucl/caroot.ucl
index f7d0dd8acb7f..72c1105248c0 100644
--- a/release/packages/ucl/caroot.ucl
+++ b/release/packages/ucl/caroot.ucl
@@ -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"
}