From 552a3b73527efc14830b10713ac5222ea99e9a55 Mon Sep 17 00:00:00 2001 From: amanda Date: Thu, 10 Dec 2020 18:34:06 +0000 Subject: [PATCH] Remove st2debug component, as only contained submit-debug-info --- actions/check_pkgs.yaml | 2 +- actions/scripts/upgrade_checks.sh | 2 +- actions/st2_chg_ver_for_st2.sh | 1 - actions/st2_prep_release_for_st2.sh | 1 - actions/workflows/st2_upgrade_ubuntu16.yaml | 2 +- 5 files changed, 3 insertions(+), 5 deletions(-) diff --git a/actions/check_pkgs.yaml b/actions/check_pkgs.yaml index eff9d107..5f848891 100644 --- a/actions/check_pkgs.yaml +++ b/actions/check_pkgs.yaml @@ -12,5 +12,5 @@ position: 0 packages: type: "string" - default: "st2common st2reactor st2actions st2api st2stream st2auth st2debug" + default: "st2common st2reactor st2actions st2api st2stream st2auth" position: 1 diff --git a/actions/scripts/upgrade_checks.sh b/actions/scripts/upgrade_checks.sh index 8799e833..eed95166 100755 --- a/actions/scripts/upgrade_checks.sh +++ b/actions/scripts/upgrade_checks.sh @@ -12,7 +12,7 @@ if [ $# -ne 2 ]; then exit 1 fi -PACKAGES=(st2actions st2api st2auth st2common st2debug st2reactor python-st2client) +PACKAGES=(st2actions st2api st2auth st2common st2reactor python-st2client) SERVICE_NAMES=(st2actionrunner st2notifier st2resultstracker st2sensorcontainer st2rulesengine st2api st2workflowengine) function verify_debian_package_version_is_installed() { diff --git a/actions/st2_chg_ver_for_st2.sh b/actions/st2_chg_ver_for_st2.sh index fe3add38..fb1ed4f6 100644 --- a/actions/st2_chg_ver_for_st2.sh +++ b/actions/st2_chg_ver_for_st2.sh @@ -53,7 +53,6 @@ COMMON_INIT_FILES=( "st2actions/st2actions/__init__.py" "st2api/st2api/__init__.py" "st2auth/st2auth/__init__.py" - "st2debug/st2debug/__init__.py" "st2reactor/st2reactor/__init__.py" "st2stream/st2stream/__init__.py" ) diff --git a/actions/st2_prep_release_for_st2.sh b/actions/st2_prep_release_for_st2.sh index ddc8b9de..bb63b505 100644 --- a/actions/st2_prep_release_for_st2.sh +++ b/actions/st2_prep_release_for_st2.sh @@ -80,7 +80,6 @@ COMMON_INIT_FILES=( "st2actions/st2actions/__init__.py" "st2api/st2api/__init__.py" "st2auth/st2auth/__init__.py" - "st2debug/st2debug/__init__.py" "st2reactor/st2reactor/__init__.py" "st2stream/st2stream/__init__.py" ) diff --git a/actions/workflows/st2_upgrade_ubuntu16.yaml b/actions/workflows/st2_upgrade_ubuntu16.yaml index 86dbe369..97c3717f 100755 --- a/actions/workflows/st2_upgrade_ubuntu16.yaml +++ b/actions/workflows/st2_upgrade_ubuntu16.yaml @@ -15,7 +15,7 @@ params: hosts: "{{hostname}}" act: "install -y -o Dpkg::Options::=\"--force-confnew\"" - packages: "st2common st2reactor st2actions st2api st2stream st2auth st2debug" + packages: "st2common st2reactor st2actions st2api st2stream st2auth" timeout: 300 on-success: "upgrade_st2client" -