From: Manuel Buil Date: Wed, 4 Oct 2017 16:11:17 +0000 (+0200) Subject: Do not use capital letters to refer to osa X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=ec0b6245f856d34845b36d0b1b5c2cd63c86b03b;p=releng.git Do not use capital letters to refer to osa As agreed with the releng-xci, we should stop using OSA and start using osa to refer to openstack-ansible Change-Id: I201b360654b9a52a3387c5e473a3e448a900bb9f Signed-off-by: Manuel Buil --- diff --git a/modules/opnfv/deployment/factory.py b/modules/opnfv/deployment/factory.py index 55fb2e2e3..e14783fe2 100644 --- a/modules/opnfv/deployment/factory.py +++ b/modules/opnfv/deployment/factory.py @@ -11,7 +11,7 @@ from opnfv.deployment.apex import adapter as apex_adapter from opnfv.deployment.compass import adapter as compass_adapter from opnfv.deployment.fuel import adapter as fuel_adapter -from opnfv.deployment.OSA import adapter as osa_adapter +from opnfv.deployment.osa import adapter as osa_adapter from opnfv.utils import opnfv_logger as logger logger = logger.Logger(__name__).getLogger() @@ -19,7 +19,7 @@ logger = logger.Logger(__name__).getLogger() class Factory(object): - INSTALLERS = ["fuel", "apex", "compass", "joid", "daisy", "OSA"] + INSTALLERS = ["fuel", "apex", "compass", "joid", "daisy", "osa"] def __init__(self): pass diff --git a/modules/opnfv/deployment/OSA/__init__.py b/modules/opnfv/deployment/osa/__init__.py similarity index 100% rename from modules/opnfv/deployment/OSA/__init__.py rename to modules/opnfv/deployment/osa/__init__.py diff --git a/modules/opnfv/deployment/OSA/adapter.py b/modules/opnfv/deployment/osa/adapter.py similarity index 100% rename from modules/opnfv/deployment/OSA/adapter.py rename to modules/opnfv/deployment/osa/adapter.py