Use determine_packages during openstack upgrade

This ensures that memcached is installed as part of an OpenStack
upgrade through the Mitaka release.

Change-Id: I2feffde8073b2415853a0950a0e37c5836e39a63
Closes-Bug: 1715624
This commit is contained in:
James Page 2017-09-07 17:01:56 +01:00
parent bc4017ba64
commit 7f38a8b648
1 changed files with 1 additions and 2 deletions

View File

@ -199,8 +199,7 @@ def do_openstack_upgrade(configs):
]
apt_update()
apt_upgrade(options=dpkg_opts, fatal=True, dist=True)
packages = BASE_PACKAGES + BASE_SERVICES
apt_install(packages=packages, options=dpkg_opts, fatal=True)
apt_install(packages=determine_packages(), options=dpkg_opts, fatal=True)
# set CONFIGS to load templates from new release and regenerate config
configs.set_release(openstack_release=new_os_rel)