git: 3c49f0f9afd5 - stable/13 - Fix gssd rc.d installation

From: Emmanuel Vadot <manu_at_FreeBSD.org>
Date: Fri, 14 Jan 2022 13:43:54 UTC
The branch stable/13 has been updated by manu:

URL: https://cgit.FreeBSD.org/src/commit/?id=3c49f0f9afd5fbc3abb896bec44f7e936c228bb9

commit 3c49f0f9afd5fbc3abb896bec44f7e936c228bb9
Author:     Emmanuel Vadot <manu@FreeBSD.org>
AuthorDate: 2021-09-27 16:31:20 +0000
Commit:     Emmanuel Vadot <manu@FreeBSD.org>
CommitDate: 2022-01-14 13:43:40 +0000

    Fix gssd rc.d installation
    
    CONFGROUPS needs to be in CAPS
    
    Fixes: a30235a4c360 ("pkgbase: Create a FreeBSD-kerberos package")
    Reported by:        kp
    
    (cherry picked from commit 860ee1792a6b37cc531fcae94c2144c8d62e8fc2)
---
 libexec/rc/rc.d/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libexec/rc/rc.d/Makefile b/libexec/rc/rc.d/Makefile
index f95ef1ec58b6..c724119cdf48 100644
--- a/libexec/rc/rc.d/Makefile
+++ b/libexec/rc/rc.d/Makefile
@@ -193,7 +193,7 @@ CONFS+=		ftpd
 .endif
 
 .if ${MK_GSSAPI} != "no"
-CONFGROUPS+=	gssd
+CONFGROUPS+=	GSSD
 GSSD=		gssd
 GSSDPACKAGE=	kerberos
 .endif