diff options
author | Emmanuel Vadot <manu@FreeBSD.org> | 2021-09-02 04:09:15 +0000 |
---|---|---|
committer | Emmanuel Vadot <manu@FreeBSD.org> | 2021-09-07 08:23:14 +0000 |
commit | a30235a4c360c06bb57be1f10ae6866a71fb5622 (patch) | |
tree | cd4ab5954e09236b2adbafe554486c1ef319e49d /libexec/rc/rc.d/Makefile | |
parent | 30975efbaff0a021545e81bd9fa09d848edfaafa (diff) | |
download | src-a30235a4c360c06bb57be1f10ae6866a71fb5622.tar.gz src-a30235a4c360c06bb57be1f10ae6866a71fb5622.zip |
pkgbase: Create a FreeBSD-kerberos package
This allows users to install or not kerberos related utilities
and libs.
Differential Revision: https://reviews.freebsd.org/D31801
Diffstat (limited to 'libexec/rc/rc.d/Makefile')
-rw-r--r-- | libexec/rc/rc.d/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/libexec/rc/rc.d/Makefile b/libexec/rc/rc.d/Makefile index 24a4e7edb9d9..2271c27b7f89 100644 --- a/libexec/rc/rc.d/Makefile +++ b/libexec/rc/rc.d/Makefile @@ -34,7 +34,6 @@ CONFS= DAEMON \ geli2 \ gptboot \ growfs \ - gssd \ hostid \ hostid_save \ hostname \ @@ -191,6 +190,12 @@ CONFS+= ccd CONFS+= ftpd .endif +.if ${MK_GSSAPI} != "no" +CONFGROUPS+= gssd +GSSD= gssd +GSSDPACKAGE= kerberos +.endif + .if ${MK_HAST} != "no" CONFGROUPS+= HAST HAST= hastd |