From df68e50a7ad3f3c15ef6d2264a223be9ba9965b8 Mon Sep 17 00:00:00 2001 From: Sergii Golovatiuk Date: Mon, 12 Jul 2021 16:29:11 +0200 Subject: [PATCH] Replace LEAPP_DEVEL_SKIP_RHSM with LEAPP_NO_RHSM LEAPP_DEVEL_SKIP_RHSM will be removed next LEAPP release. This patch replaces it with LEAPP_NO_RHSM Change-Id: I946ede504b98d8226bffaa7220174fd0d94e81f1 --- tasks/common/undercloud_os_upgrade.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/common/undercloud_os_upgrade.yaml b/tasks/common/undercloud_os_upgrade.yaml index f7aac401..50906d2a 100644 --- a/tasks/common/undercloud_os_upgrade.yaml +++ b/tasks/common/undercloud_os_upgrade.yaml @@ -105,7 +105,7 @@ - name: Run leapp upgrade (download packages) shell: | set -o pipefail - {% if leapp_unsubscribed|bool and (upgrade_workarounds|bool or ffu_upgrade_workarounds|bool) %} LEAPP_UNSUPPORTED=1 LEAPP_DEVEL_SKIP_RHSM=1 {% endif %}\ + {% if leapp_unsubscribed|bool and (upgrade_workarounds|bool or ffu_upgrade_workarounds|bool) %} LEAPP_UNSUPPORTED=1 LEAPP_NO_RHSM=1 {% endif %}\ {% if leapp_skip_release_check|bool %} LEAPP_DEVEL_SKIP_CHECK_OS_RELEASE=1 {% endif %} sudo -E leapp upgrade \ {% if leapp_unsubscribed|bool %} {{ leapp_unsubscribed_options.stdout }} {% endif %} --debug 2>&1 | \ tee {{ working_dir }}/undercloud_leapp_upgrade.log