From bba89f81859908a3950fa71d3817a9e7d374a733 Mon Sep 17 00:00:00 2001 From: "Jean (east-high-Nerd)" Date: Mon, 21 Jul 2025 15:50:47 -0400 Subject: [PATCH] Rearranged order of entries in temporary root crontab --- post-inst.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/post-inst.sh b/post-inst.sh index 352abe2..ec9973e 100755 --- a/post-inst.sh +++ b/post-inst.sh @@ -233,11 +233,11 @@ EOF if [[ "${ID}" == 'fedora' ]]; then printf \ - "@reboot\t/usr/bin/home-fix.sh\n@reboot\tsudo -u ${USERNAME} '${BASEDIR}/finalize.sh'\n" | \ + "@reboot\tsudo -u ${USERNAME} '${BASEDIR}/finalize.sh'\n@reboot\t/usr/bin/home-fix.sh\n" | \ tee /var/spool/cron/root &> /dev/null elif [[ "${ID}" == 'debian' ]]; then printf \ - "@reboot\t/usr/bin/home-fix.sh\n@reboot\tsudo -u ${USERNAME} '${BASEDIR}/finalize.sh'\n" | \ + "@reboot\tsudo -u ${USERNAME} '${BASEDIR}/finalize.sh'\n@reboot\t/usr/bin/home-fix.sh\n" | \ tee /var/spool/cron/crontabs/root &> /dev/null chown \