diff options
author | Narinder Gupta <narinder.gupta@canonical.com> | 2016-10-18 13:06:06 -0500 |
---|---|---|
committer | Narinder Gupta <narinder.gupta@canonical.com> | 2016-10-18 13:35:10 -0500 |
commit | 08aff60e052b5b697d8b4e53ef55c6827611999f (patch) | |
tree | 335d632cf9b447ff4b0b7ce19cd619338f85a3c9 /ci/genBundle.py | |
parent | e9d7bab1c99f0c5cbac1265d3cbd661bc9c62dbc (diff) |
adding support for Newton and correct provide type.
Change-Id: I98cc23946891c785b1056e5d1d9486ab2f591422
Signed-off-by: Narinder Gupta <narinder.gupta@canonical.com>
Diffstat (limited to 'ci/genBundle.py')
-rw-r--r-- | ci/genBundle.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ci/genBundle.py b/ci/genBundle.py index 3eecdf4c..3aa5bcee 100644 --- a/ci/genBundle.py +++ b/ci/genBundle.py @@ -200,6 +200,10 @@ 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 |