2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-22 09:57:41 +00:00

[#2539] hammer.py: delete the default Heimdal krb5-config in FreeBSD

This makes it possible for Kea to pick up by default on the krb5-config
from the MIT version of Kerberos packages.
This commit is contained in:
Andrei Pavel 2022-09-05 22:26:15 +03:00
parent 033ae2e37f
commit f90492b4bc
No known key found for this signature in database
GPG Key ID: D4E804481939CB21

View File

@ -1833,6 +1833,9 @@ def prepare_system_local(features, check_times):
if 'gssapi' in features:
packages.extend(['krb5', 'krb5-devel'])
# FreeBSD comes with a Heimdal krb5-config by default. Make sure
# it's deleted so that Kea uses the MIT packages added just above.
execute('sudo rm -f /usr/bin/krb5-config')
if 'ccache' in features:
packages.extend(['ccache'])