From 521750cf34b84a78e5f5019c17bc643ae4dd3b66 Mon Sep 17 00:00:00 2001 From: Frank Brehm Date: Wed, 22 May 2024 15:59:51 +0200 Subject: [PATCH] Renaming directory lib/cr_tf => lib/create_terraform --- bin/create-terraform | 6 +++--- lib/{cr_tf => create_terraform}/__init__.py | 0 lib/{cr_tf => create_terraform}/app.py | 0 lib/{cr_tf => create_terraform}/config.py | 0 lib/{cr_tf => create_terraform}/errors.py | 0 lib/{cr_tf => create_terraform}/handler/__init__.py | 0 lib/{cr_tf => create_terraform}/handler/dns.py | 0 lib/{cr_tf => create_terraform}/handler/files.py | 0 lib/{cr_tf => create_terraform}/handler/first.py | 0 lib/{cr_tf => create_terraform}/handler/read.py | 0 lib/{cr_tf => create_terraform}/handler/vmware.py | 0 lib/{cr_tf => create_terraform}/locale | 0 lib/{cr_tf => create_terraform}/terraform/__init__.py | 0 lib/{cr_tf => create_terraform}/terraform/disk.py | 0 lib/{cr_tf => create_terraform}/terraform/interface.py | 0 lib/{cr_tf => create_terraform}/terraform/vm.py | 0 lib/{cr_tf => create_terraform}/tools.py | 0 lib/{cr_tf => create_terraform}/vs_config.py | 0 lib/{cr_tf => create_terraform}/xlate.py | 0 19 files changed, 3 insertions(+), 3 deletions(-) rename lib/{cr_tf => create_terraform}/__init__.py (100%) rename lib/{cr_tf => create_terraform}/app.py (100%) rename lib/{cr_tf => create_terraform}/config.py (100%) rename lib/{cr_tf => create_terraform}/errors.py (100%) rename lib/{cr_tf => create_terraform}/handler/__init__.py (100%) rename lib/{cr_tf => create_terraform}/handler/dns.py (100%) rename lib/{cr_tf => create_terraform}/handler/files.py (100%) rename lib/{cr_tf => create_terraform}/handler/first.py (100%) rename lib/{cr_tf => create_terraform}/handler/read.py (100%) rename lib/{cr_tf => create_terraform}/handler/vmware.py (100%) rename lib/{cr_tf => create_terraform}/locale (100%) rename lib/{cr_tf => create_terraform}/terraform/__init__.py (100%) rename lib/{cr_tf => create_terraform}/terraform/disk.py (100%) rename lib/{cr_tf => create_terraform}/terraform/interface.py (100%) rename lib/{cr_tf => create_terraform}/terraform/vm.py (100%) rename lib/{cr_tf => create_terraform}/tools.py (100%) rename lib/{cr_tf => create_terraform}/vs_config.py (100%) rename lib/{cr_tf => create_terraform}/xlate.py (100%) diff --git a/bin/create-terraform b/bin/create-terraform index def2528..9e0dc41 100755 --- a/bin/create-terraform +++ b/bin/create-terraform @@ -31,18 +31,18 @@ else: bin_dir = os.path.dirname(os.path.realpath(__file__)) base_dir = os.path.abspath(os.path.join(bin_dir, '..')) lib_dir = os.path.join(base_dir, 'lib') -module_dir = os.path.join(lib_dir, 'cr_tf') +module_dir = os.path.join(lib_dir, 'create_terraform') if os.path.exists(module_dir): sys.path.insert(0, lib_dir) from fb_tools.common import pp -from cr_tf.app import CrTfApplication +from create_terraform.app import CrTfApplication log = logging.getLogger(__name__) __author__ = 'Frank Brehm ' -__copyright__ = '(C) 2019 by Frank Brehm, Pixelpark GmbH, Berlin' +__copyright__ = '(C) 2024 by Frank Brehm, Pixelpark GmbH, Berlin' appname = os.path.basename(sys.argv[0]) diff --git a/lib/cr_tf/__init__.py b/lib/create_terraform/__init__.py similarity index 100% rename from lib/cr_tf/__init__.py rename to lib/create_terraform/__init__.py diff --git a/lib/cr_tf/app.py b/lib/create_terraform/app.py similarity index 100% rename from lib/cr_tf/app.py rename to lib/create_terraform/app.py diff --git a/lib/cr_tf/config.py b/lib/create_terraform/config.py similarity index 100% rename from lib/cr_tf/config.py rename to lib/create_terraform/config.py diff --git a/lib/cr_tf/errors.py b/lib/create_terraform/errors.py similarity index 100% rename from lib/cr_tf/errors.py rename to lib/create_terraform/errors.py diff --git a/lib/cr_tf/handler/__init__.py b/lib/create_terraform/handler/__init__.py similarity index 100% rename from lib/cr_tf/handler/__init__.py rename to lib/create_terraform/handler/__init__.py diff --git a/lib/cr_tf/handler/dns.py b/lib/create_terraform/handler/dns.py similarity index 100% rename from lib/cr_tf/handler/dns.py rename to lib/create_terraform/handler/dns.py diff --git a/lib/cr_tf/handler/files.py b/lib/create_terraform/handler/files.py similarity index 100% rename from lib/cr_tf/handler/files.py rename to lib/create_terraform/handler/files.py diff --git a/lib/cr_tf/handler/first.py b/lib/create_terraform/handler/first.py similarity index 100% rename from lib/cr_tf/handler/first.py rename to lib/create_terraform/handler/first.py diff --git a/lib/cr_tf/handler/read.py b/lib/create_terraform/handler/read.py similarity index 100% rename from lib/cr_tf/handler/read.py rename to lib/create_terraform/handler/read.py diff --git a/lib/cr_tf/handler/vmware.py b/lib/create_terraform/handler/vmware.py similarity index 100% rename from lib/cr_tf/handler/vmware.py rename to lib/create_terraform/handler/vmware.py diff --git a/lib/cr_tf/locale b/lib/create_terraform/locale similarity index 100% rename from lib/cr_tf/locale rename to lib/create_terraform/locale diff --git a/lib/cr_tf/terraform/__init__.py b/lib/create_terraform/terraform/__init__.py similarity index 100% rename from lib/cr_tf/terraform/__init__.py rename to lib/create_terraform/terraform/__init__.py diff --git a/lib/cr_tf/terraform/disk.py b/lib/create_terraform/terraform/disk.py similarity index 100% rename from lib/cr_tf/terraform/disk.py rename to lib/create_terraform/terraform/disk.py diff --git a/lib/cr_tf/terraform/interface.py b/lib/create_terraform/terraform/interface.py similarity index 100% rename from lib/cr_tf/terraform/interface.py rename to lib/create_terraform/terraform/interface.py diff --git a/lib/cr_tf/terraform/vm.py b/lib/create_terraform/terraform/vm.py similarity index 100% rename from lib/cr_tf/terraform/vm.py rename to lib/create_terraform/terraform/vm.py diff --git a/lib/cr_tf/tools.py b/lib/create_terraform/tools.py similarity index 100% rename from lib/cr_tf/tools.py rename to lib/create_terraform/tools.py diff --git a/lib/cr_tf/vs_config.py b/lib/create_terraform/vs_config.py similarity index 100% rename from lib/cr_tf/vs_config.py rename to lib/create_terraform/vs_config.py diff --git a/lib/cr_tf/xlate.py b/lib/create_terraform/xlate.py similarity index 100% rename from lib/cr_tf/xlate.py rename to lib/create_terraform/xlate.py -- 2.39.5