diff options
author | Scott Moser <smoser@ubuntu.com> | 2010-02-11 13:09:38 -0500 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2010-02-11 13:09:38 -0500 |
commit | c2039ded38064cb8b17fc242791e7f16e7f68f4d (patch) | |
tree | 7ce071c8ed8cddd778d1b17633cb24865c08cf1a | |
parent | 0435087c48264fda6bd9c3e01998849b2f70f685 (diff) | |
download | vyos-cloud-init-c2039ded38064cb8b17fc242791e7f16e7f68f4d.tar.gz vyos-cloud-init-c2039ded38064cb8b17fc242791e7f16e7f68f4d.zip |
rename EC2Init class to CloudInit
-rwxr-xr-x | cloud-init-run-module.py | 2 | ||||
-rwxr-xr-x | cloud-init.py | 2 | ||||
-rw-r--r-- | cloudinit/CloudConfig.py | 2 | ||||
-rw-r--r-- | cloudinit/__init__.py | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/cloud-init-run-module.py b/cloud-init-run-module.py index 5a30b081..028129bf 100755 --- a/cloud-init-run-module.py +++ b/cloud-init-run-module.py @@ -32,7 +32,7 @@ def main(): (freq,semname,modname)=sys.argv[1:4] run_args=sys.argv[4:] - cloud = cloudinit.EC2Init() + cloud = cloudinit.CloudInit() try: cloud.get_data_source() except Exception as e: diff --git a/cloud-init.py b/cloud-init.py index 501ed4b4..1db2ea60 100755 --- a/cloud-init.py +++ b/cloud-init.py @@ -26,7 +26,7 @@ def warn(str): sys.stderr.write(str) def main(): - cloud = cloudinit.EC2Init() + cloud = cloudinit.CloudInit() try: cloud.get_data_source() diff --git a/cloudinit/CloudConfig.py b/cloudinit/CloudConfig.py index e15d8f19..32e5c95b 100644 --- a/cloudinit/CloudConfig.py +++ b/cloudinit/CloudConfig.py @@ -32,7 +32,7 @@ class CloudConfig(): cfg = None def __init__(self,cfgfile): - self.cloud = cloudinit.EC2Init() + self.cloud = cloudinit.CloudInit() self.cfg = self.get_config_obj(cfgfile) self.cloud.get_data_source() self.add_handler('apt-update-upgrade', self.h_apt_update_upgrade) diff --git a/cloudinit/__init__.py b/cloudinit/__init__.py index 76aa34f0..65ca6d7f 100644 --- a/cloudinit/__init__.py +++ b/cloudinit/__init__.py @@ -44,7 +44,7 @@ import DataSourceEc2 import UserDataHandler import util -class EC2Init: +class CloudInit: datasource_map = { "ec2" : DataSourceEc2.DataSourceEc2, } |