From b4af591361b30472638ecb52c309ca01b7e016ae Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Fri, 20 Sep 2024 16:52:27 +0200 Subject: [PATCH] autoport-launcher: call dnf refresh before update --- autoport-launcher | 2 ++ 1 file changed, 2 insertions(+) diff --git a/autoport-launcher b/autoport-launcher index 9e4503d..e93cc54 100755 --- a/autoport-launcher +++ b/autoport-launcher @@ -62,11 +62,13 @@ for r in ${AUTOPORT_REPOSITORIES[$i]}; do if [ "${AUTOPORT_NATIVE[$i]}" ]; then [[ "`/usr/bin/tty`" != "not a tty" ]] && echo "Updating packages in ${AUTOPORT_ARCH[$i]} native environment" echo "= Updating packages in ${AUTOPORT_ARCH[$i]} native environment..." >> $LOGFILE + LANG=C dnf refresh >> $LOGFILE LANG=C dnf update -y >> $LOGFILE UPDATE_DONE=1 elif [ "${AUTOPORT_CHROOT[$i]}" ]; then [[ "`/usr/bin/tty`" != "not a tty" ]] && echo "Updating packages in ${AUTOPORT_CHROOT[$i]} chroot environment" #echo "= Updating packages in ${AUTOPORT_CHROOT[$i]} chroot environment..." >> $LOGFILE + LANG=C /usr/sbin/chroot /var/autoport/${AUTOPORT_CHROOT[$i]} dnf refresh > /dev/null LANG=C /usr/sbin/chroot /var/autoport/${AUTOPORT_CHROOT[$i]} dnf update -y > /dev/null #[ "${AUTOPORT_CHROOT_ICECREAM[$i]}" ] && LANG=C /usr/sbin/chroot /var/autoport/${AUTOPORT_CHROOT[$i]} /etc/init.d/icecream start UPDATE_DONE=1