Skip to content

Commit

Permalink
WORKAROUND: Disable REX cockpit feature for 6.8 presnaps temporarily
Browse files Browse the repository at this point in the history
  • Loading branch information
lpramuk committed May 11, 2020
1 parent fc90207 commit 9537d3d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion automation_tools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2204,7 +2204,9 @@ def product_install(distribution, certificate_url=None, selinux_mode=None, sat_v
installer_options.update({'foreman-proxy-plugin-remote-execution-ssh-async-ssh': 'true'})

# enable cockpit feature
if (sat_version not in ('6.3', '6.4', '6.5', '6.6')):
# if (sat_version not in ('6.3', '6.4', '6.5', '6.6')):
# WORKAROUND (no BZ): 6.8 presnaps are failing due to this feature, disable temporarily for 6.8
if (sat_version not in ('6.3', '6.4', '6.5', '6.6', '6.8')):
installer_options.update({'enable-foreman-plugin-remote-execution-cockpit': None})

if os.environ.get('PROXY_INFO'):
Expand Down

0 comments on commit 9537d3d

Please sign in to comment.