From 61c8aeb691f262d7cc9e67c8656362f5508cb561 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Thu, 16 Aug 2007 21:56:51 +0000 Subject: Make etc-update copy owner and group bits when it merges config files. (trunk r7636) svn path=/main/branches/2.1.2/; revision=7637 --- bin/etc-update | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'bin/etc-update') diff --git a/bin/etc-update b/bin/etc-update index a6378a142..27d7bca35 100755 --- a/bin/etc-update +++ b/bin/etc-update @@ -387,9 +387,11 @@ Please select from the menu above (-1 to exit, losing this merge): " my_input=$(read_int) case ${my_input} in 1) echo "Replacing ${ofile} with ${mfile}" - if [[ ${USERLAND} == GNU ]]; then + if [[ ${USERLAND:-GNU} == GNU ]]; then + chown --reference="${ofile}" "${mfile}" chmod --reference="${ofile}" "${mfile}" else + chown "$(stat -f %Su:%Sg "${ofile}")" "${mfile}" chmod $(stat -f %Mp%Lp "${ofile}") "${mfile}" fi mv ${mv_opts} ${mfile} ${ofile} -- cgit v1.2.3-1-g7c22