From 672cab858e2331fce61c769affdbd700d62a0ee4 Mon Sep 17 00:00:00 2001 From: Doug Burks Date: Thu, 12 Jan 2023 12:48:16 -0500 Subject: [PATCH] Continue even if thehive errors --- salt/common/tools/sbin/soup | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/salt/common/tools/sbin/soup b/salt/common/tools/sbin/soup index 9679010a5..417c0289e 100755 --- a/salt/common/tools/sbin/soup +++ b/salt/common/tools/sbin/soup @@ -955,9 +955,9 @@ up_to_2.3.110() { up_to_2.3.120() { # Stop thehive services since these will be broken in .120 - so-thehive-stop - so-thehive-es-stop - so-cortex-stop + so-thehive-stop || true + so-thehive-es-stop || true + so-cortex-stop || true INSTALLEDVERSION=2.3.120 }