From 0d4a49a0fff14cc42ceff84ef619b7c9e8bda4d7 Mon Sep 17 00:00:00 2001 From: Mike Reeves Date: Fri, 18 Aug 2023 15:34:36 -0400 Subject: [PATCH 1/2] Update so-setup --- setup/so-setup | 1 + 1 file changed, 1 insertion(+) diff --git a/setup/so-setup b/setup/so-setup index d048cc8bc..2b9a0fd01 100755 --- a/setup/so-setup +++ b/setup/so-setup @@ -577,6 +577,7 @@ if ! [[ -f $install_opt_file ]]; then if [[ $waitforstate ]]; then touch /root/accept_changes + touch /etc/sohotfix make_some_dirs percentage=0 es_heapsize From 421cfc46ad8d456a0b6f46044a64771a1b572956 Mon Sep 17 00:00:00 2001 From: Mike Reeves Date: Fri, 18 Aug 2023 15:39:58 -0400 Subject: [PATCH 2/2] 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"