diff options
author | Scott Moser <smoser@ubuntu.com> | 2018-04-11 14:33:02 -0600 |
---|---|---|
committer | Chad Smith <chad.smith@canonical.com> | 2018-04-11 14:33:02 -0600 |
commit | 0f7745619ab0a61d7dee5bde43e1e970ddf4a9b6 (patch) | |
tree | e37eaf97a46f994c7b0be657bb5b7cab36deaf3f /cloudinit/apport.py | |
parent | 01ff5c2eae9fc75beab3bc1368e17a7278dc0905 (diff) | |
download | vyos-cloud-init-0f7745619ab0a61d7dee5bde43e1e970ddf4a9b6.tar.gz vyos-cloud-init-0f7745619ab0a61d7dee5bde43e1e970ddf4a9b6.zip |
Apport: add Brightbox, IBM, LXD, and OpenTelekomCloud to list of clouds.
When filing a bug with apport, this allows the user to choose
Brightbox, IBM, LXD, or OpenTelekomCloud as their cloud.
Diffstat (limited to 'cloudinit/apport.py')
-rw-r--r-- | cloudinit/apport.py | 27 |
1 files changed, 23 insertions, 4 deletions
diff --git a/cloudinit/apport.py b/cloudinit/apport.py index 618b0160..130ff269 100644 --- a/cloudinit/apport.py +++ b/cloudinit/apport.py @@ -13,10 +13,29 @@ except ImportError: KNOWN_CLOUD_NAMES = [ - 'Amazon - Ec2', 'AliYun', 'AltCloud', 'Azure', 'Bigstep', 'CloudSigma', - 'CloudStack', 'DigitalOcean', 'GCE - Google Compute Engine', - 'Hetzner Cloud', 'MAAS', 'NoCloud', 'OpenNebula', 'OpenStack', 'OVF', - 'Scaleway', 'SmartOS', 'VMware', 'Other'] + 'AliYun', + 'AltCloud', + 'Amazon - Ec2', + 'Azure', + 'Bigstep', + 'Brightbox', + 'CloudSigma', + 'CloudStack', + 'DigitalOcean', + 'GCE - Google Compute Engine', + 'Hetzner Cloud', + 'IBM - (aka SoftLayer or BlueMix)', + 'LXD', + 'MAAS', + 'NoCloud', + 'OpenNebula', + 'OpenStack', + 'OVF', + 'OpenTelekomCloud', + 'Scaleway', + 'SmartOS', + 'VMware', + 'Other'] # Potentially clear text collected logs CLOUDINIT_LOG = '/var/log/cloud-init.log' |