From fc0ca8cd22ae0ca04d8054be2a4d9118e5c0dc28 Mon Sep 17 00:00:00 2001 From: Matthew Jones Date: Fri, 15 Aug 2014 16:18:59 -0400 Subject: [PATCH] Include vCenter when mentioning vmware in long form --- awx/main/models/credential.py | 2 +- awx/main/models/inventory.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/awx/main/models/credential.py b/awx/main/models/credential.py index c8cb331587..2fa90ceb41 100644 --- a/awx/main/models/credential.py +++ b/awx/main/models/credential.py @@ -33,7 +33,7 @@ class Credential(PasswordFieldsModel, CommonModelNameNotUnique): ('scm', _('Source Control')), ('aws', _('Amazon Web Services')), ('rax', _('Rackspace')), - ('vmware', _('VMware')), + ('vmware', _('VMware vCenter')), ('gce', _('Google Compute Engine')), ('azure', _('Microsoft Azure')), ] diff --git a/awx/main/models/inventory.py b/awx/main/models/inventory.py index e8151fd6a5..9852eb9c0c 100644 --- a/awx/main/models/inventory.py +++ b/awx/main/models/inventory.py @@ -743,7 +743,7 @@ class InventorySourceOptions(BaseModel): ('ec2', _('Amazon EC2')), ('gce', _('Google Compute Engine')), ('azure', _('Microsoft Azure')), - ('vmware', _('VMware')), + ('vmware', _('VMware vCenter')), ] class Meta: