git: eef0c78e435d - main - etc: add config tag to /root/.k5login

From: Lexi Winter <ivy_at_FreeBSD.org>
Date: Wed, 23 Apr 2025 04:40:31 UTC
The branch main has been updated by ivy:

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

commit eef0c78e435d5e38392c239d878784fda80b1fb8
Author:     Lexi Winter <ivy@FreeBSD.org>
AuthorDate: 2025-04-23 04:38:13 +0000
Commit:     Lexi Winter <ivy@FreeBSD.org>
CommitDate: 2025-04-23 04:39:05 +0000

    etc: add config tag to /root/.k5login
    
    this prevents the file being overwritten every time FreeBSD-runtime is
    upgraded.
    
    Reviewed by:    des
    Approved by:    des (mentor)
    Differential Revision:  https://reviews.freebsd.org/D49907
---
 etc/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/etc/Makefile b/etc/Makefile
index d3cb6b679dc5..4e387e8543d0 100644
--- a/etc/Makefile
+++ b/etc/Makefile
@@ -71,7 +71,7 @@ distribution:
 .if ${MK_KERBEROS} != "no"
 	cd ${.CURDIR}/root; \
 	    ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m 644 \
-		-T "package=runtime" \
+		-T "package=runtime,config" \
 		dot.k5login ${DESTDIR}/root/.k5login;
 .endif