Skip to content

Commit

Permalink
Install expect package
Browse files Browse the repository at this point in the history
  • Loading branch information
lhellebr authored and pondrejk committed May 20, 2020
1 parent eddd11f commit a6db14b
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions automation_tools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2296,6 +2296,7 @@ def product_install(distribution, certificate_url=None, selinux_mode=None, sat_v
if os.environ.get('HOTFIX') != 'NO_HOTFIX':
execute(apply_hotfix)
execute(setup_rhv_ca)
execute(install_expect)


def fix_qdrouterd_listen_to_ipv6():
Expand Down Expand Up @@ -3262,3 +3263,8 @@ def package_install(packages, sat_version=None):
else:
command = 'yum -y install {}'.format(packages)
return command


def install_expect():
# install Expect package
run(package_install('expect'))

0 comments on commit a6db14b

Please sign in to comment.