From 421cfc46ad8d456a0b6f46044a64771a1b572956 Mon Sep 17 00:00:00 2001 From: Mike Reeves Date: Fri, 18 Aug 2023 15:39:58 -0400 Subject: [PATCH] Update soup --- salt/manager/tools/sbin/soup | 3 +++ 1 file changed, 3 insertions(+) diff --git a/salt/manager/tools/sbin/soup b/salt/manager/tools/sbin/soup index d0b8f4b22..0b4136065 100755 --- a/salt/manager/tools/sbin/soup +++ b/salt/manager/tools/sbin/soup @@ -569,6 +569,9 @@ upgrade_check() { # Let's make sure we actually need to update. NEWVERSION=$(cat $UPDATE_DIR/VERSION) HOTFIXVERSION=$(cat $UPDATE_DIR/HOTFIX) + if [ ! -f /etc/sohotfix ]; then + touch /etc/sohotfix + fi [[ -f /etc/sohotfix ]] && CURRENTHOTFIX=$(cat /etc/sohotfix) if [ "$INSTALLEDVERSION" == "$NEWVERSION" ]; then echo "Checking to see if there are hotfixes needed"