summaryrefslogtreecommitdiff
path: root/ec2init/DataSource.py
diff options
context:
space:
mode:
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)