diff options
author | Narinder Gupta <narinder.gupta@canonical.com> | 2016-10-20 13:25:20 -0500 |
---|---|---|
committer | Narinder Gupta <narinder.gupta@canonical.com> | 2016-10-20 13:25:20 -0500 |
commit | 74bc0d089e5748e89b38f69874ccd6c74d801697 (patch) | |
tree | db3f2b02e6488b7c5c06def5ad776dc5bcbec36d | |
parent | 2c40f6ce4788604d37a0c6f53ca7727850231739 (diff) |
better support for old mitaka openstack release,
Change-Id: I2a9285932a0e049efb2bca2e467a504dc4851f3d
Signed-off-by: Narinder Gupta <narinder.gupta@canonical.com>
-rw-r--r-- | ci/genBundle.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ci/genBundle.py b/ci/genBundle.py index 3aa5bcee..fdc9a532 100644 --- a/ci/genBundle.py +++ b/ci/genBundle.py @@ -196,14 +196,14 @@ if 'radosgwcluster' in extra: config['os']['beta']['hacluster_ceph_radosgw'] = True if 'hugepages' in extra: config['os']['beta']['huge_pages'] = True +if 'mitaka' in extra: + config['os']['release'] = 'mitaka' if 'trusty' in extra: config['ubuntu']['release'] = 'trusty' if 'liberty' in extra: config['os']['release'] = 'liberty' if 'xenial' in extra: config['ubuntu']['release'] = 'xenial' - if 'newton' in extra: - config['os']['release'] = 'newton' if 'dishypcon' in extra: config['os']['hyperconverged'] = False |