From: Chris Hofstaedtler Date: Tue, 12 Apr 2022 15:41:05 +0000 (+0000) Subject: Use non-deprecated chown syntax X-Git-Tag: v2.39~16^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=10f3107199b6e9a3d70cff6280affd2f272d65f4;p=thirdparty%2Futil-linux.git Use non-deprecated chown syntax Closes: #1007139 --- diff --git a/tests/functions.sh b/tests/functions.sh index e47b78ac9d..bcc2e565b6 100644 --- a/tests/functions.sh +++ b/tests/functions.sh @@ -464,7 +464,7 @@ function ts_init_suid { TS_SUID_USER[$ct]=$(stat --printf="%U" $PROG) TS_SUID_GROUP[$ct]=$(stat --printf="%G" $PROG) - chown root.root $PROG &> /dev/null + chown root:root $PROG &> /dev/null chmod u+s $PROG &> /dev/null } @@ -653,7 +653,7 @@ function ts_cleanup_on_exit { for idx in $(seq 0 $((${#TS_SUID_PROGS[*]} - 1))); do PROG=${TS_SUID_PROGS[$idx]} chmod a-s $PROG &> /dev/null - chown ${TS_SUID_USER[$idx]}.${TS_SUID_GROUP[$idx]} $PROG &> /dev/null + chown ${TS_SUID_USER[$idx]}:${TS_SUID_GROUP[$idx]} $PROG &> /dev/null done for dev in "${TS_LOOP_DEVS[@]}"; do