git: 77e0f080b2f8 - stable/13 - etc: add config tag to /root/.k5login
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 07 May 2025 18:45:56 UTC
The branch stable/13 has been updated by ivy:
URL: https://cgit.FreeBSD.org/src/commit/?id=77e0f080b2f821b76b2cecd843aafffb234d45b8
commit 77e0f080b2f821b76b2cecd843aafffb234d45b8
Author: Lexi Winter <ivy@FreeBSD.org>
AuthorDate: 2025-04-23 04:38:13 +0000
Commit: Lexi Winter <ivy@FreeBSD.org>
CommitDate: 2025-05-07 14:17:26 +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
(cherry picked from commit eef0c78e435d5e38392c239d878784fda80b1fb8)
---
etc/Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/etc/Makefile b/etc/Makefile
index 42d9e4763da0..b769192c5e19 100644
--- a/etc/Makefile
+++ b/etc/Makefile
@@ -69,7 +69,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