diff --git a/salt/common/tools/sbin/soup b/salt/common/tools/sbin/soup index 3a5a807c2..e24290a14 100755 --- a/salt/common/tools/sbin/soup +++ b/salt/common/tools/sbin/soup @@ -579,6 +579,7 @@ preupgrade_changes() { [[ "$INSTALLEDVERSION" == 2.3.230 ]] && up_to_2.3.240 [[ "$INSTALLEDVERSION" == 2.3.240 ]] && up_to_2.3.250 [[ "$INSTALLEDVERSION" == 2.3.250 ]] && up_to_2.3.260 + [[ "$INSTALLEDVERSION" == 2.3.260 ]] && up_to_2.3.270 true } @@ -610,6 +611,7 @@ postupgrade_changes() { [[ "$POSTVERSION" == 2.3.230 ]] && post_to_2.3.240 [[ "$POSTVERSION" == 2.3.240 ]] && post_to_2.3.250 [[ "$POSTVERSION" == 2.3.250 ]] && post_to_2.3.260 + [[ "$POSTVERSION" == 2.3.260 ]] && post_to_2.3.270 true } @@ -763,6 +765,11 @@ post_to_2.3.260() { POSTVERSION=2.3.260 } +post_to_2.3.270() { + echo "Nothing to do for .270" + POSTVERSION=2.3.270 +} + stop_salt_master() { # kill all salt jobs across the grid because the hang indefinitely if they are queued and salt-master restarts set +e @@ -1123,6 +1130,11 @@ up_to_2.3.260() { INSTALLEDVERSION=2.3.260 } +up_to_2.3.270() { + echo "Upgrading to 2.3.270" + INSTALLEDVERSION=2.3.270 +} + verify_upgradespace() { CURRENTSPACE=$(df -BG / | grep -v Avail | awk '{print $4}' | sed 's/.$//') if [ "$CURRENTSPACE" -lt "10" ]; then