From 44c3b7b88b25d232795ac16f83b45b8cfa3131cf Mon Sep 17 00:00:00 2001 From: ajacoutot Date: Mon, 8 Jul 2024 14:47:42 +0000 Subject: [PATCH] Use install -F instead of cat(1); no clue what I was thinking. ok robert@ --- usr.sbin/rcctl/rcctl.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr.sbin/rcctl/rcctl.sh b/usr.sbin/rcctl/rcctl.sh index 56ee8cb173d..fddd8d777ca 100644 --- a/usr.sbin/rcctl/rcctl.sh +++ b/usr.sbin/rcctl/rcctl.sh @@ -1,6 +1,6 @@ #!/bin/ksh # -# $OpenBSD: rcctl.sh,v 1.118 2024/07/08 14:32:44 ajacoutot Exp $ +# $OpenBSD: rcctl.sh,v 1.119 2024/07/08 14:47:42 ajacoutot Exp $ # # Copyright (c) 2014, 2015-2022 Antoine Jacoutot # Copyright (c) 2014 Ingo Schwarze @@ -128,7 +128,7 @@ rcconf_edit_end() sort -u -o ${_TMP_RCCONF} ${_TMP_RCCONF} || \ rcctl_err "cannot modify ${_TMP_RCCONF}" if ! cmp -s ${_TMP_RCCONF} /etc/rc.conf.local; then - cat ${_TMP_RCCONF} >/etc/rc.conf.local || \ + install -F -m0644 -o0 -g0 ${_TMP_RCCONF} /etc/rc.conf.local || rcctl_err "cannot write to /etc/rc.conf.local" fi if [ ! -s /etc/rc.conf.local ]; then -- 2.20.1