summaryrefslogtreecommitdiff
path: root/ec2init/DataSource.py
diff options
context:
space:
mode:
authorScott Moser <smoser@ubuntu.com>2010-02-03 18:09:48 -0500
committerScott Moser <smoser@ubuntu.com>2010-02-03 18:09:48 -0500
commitaed1c1e9fda1e78d19305e90f554d0dcb5388cd7 (patch)
tree7f0dd15537201ea49217ba6ec3040ede9b0426f4 /ec2init/DataSource.py
parentff522791cb2b58e83da4efea1be76757f05a1f1f (diff)
downloadvyos-cloud-init-aed1c1e9fda1e78d19305e90f554d0dcb5388cd7.tar.gz
vyos-cloud-init-aed1c1e9fda1e78d19305e90f554d0dcb5388cd7.zip
globally remove ec2init and rename to cloudinit
Diffstat (limited to 'ec2init/DataSource.py')
-rw-r--r--ec2init/DataSource.py30
1 files changed, 0 insertions, 30 deletions
diff --git a/ec2init/DataSource.py b/ec2init/DataSource.py
deleted file mode 100644
index 9fe38b17..00000000
--- a/ec2init/DataSource.py
+++ /dev/null
@@ -1,30 +0,0 @@
-
-import ec2init
-import UserDataHandler as ud
-
-class DataSource:
- userdata = None
- metadata = None
- userdata_raw = None
-
- def __init__(self):
- pass
-
- def get_userdata(self):
- if self.userdata == None:
- self.userdata = ud.preprocess_userdata(self.userdata_raw)
- return self.userdata
-
- def get_userdata_raw(self):
- return(self.userdata_raw)
-
- def get_public_ssh_keys(self):
- return([])
-
- def device_name_to_device(self, name):
- # translate a 'name' to a device
- # the primary function at this point is on ec2
- # to consult metadata service, that has
- # ephemeral0: sdb
- # and return 'sdb' for input 'ephemeral0'
- return(None)