summaryrefslogtreecommitdiff
path: root/cloudinit/sources/DataSourceAzure.py
diff options
context:
space:
mode:
authorBen Howard <ben.howard@canonical.com>2013-10-03 16:15:56 -0600
committerBen Howard <ben.howard@canonical.com>2013-10-03 16:15:56 -0600
commitecf2a600e41a9632ad305eb6a8cd5665908f31fb (patch)
treedd8539cba663a5662187d7b68b49252d9877ca3e /cloudinit/sources/DataSourceAzure.py
parentc3daa2fa160c930084509f4ef5abfbb562b7059d (diff)
downloadvyos-cloud-init-ecf2a600e41a9632ad305eb6a8cd5665908f31fb.tar.gz
vyos-cloud-init-ecf2a600e41a9632ad305eb6a8cd5665908f31fb.zip
Moved ephemeralX.Y handling from Datasource into the cc_disk_setup, which makes it cloud agnostic.
Diffstat (limited to 'cloudinit/sources/DataSourceAzure.py')
-rw-r--r--cloudinit/sources/DataSourceAzure.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/cloudinit/sources/DataSourceAzure.py b/cloudinit/sources/DataSourceAzure.py
index b7de0187..8321dee0 100644
--- a/cloudinit/sources/DataSourceAzure.py
+++ b/cloudinit/sources/DataSourceAzure.py
@@ -177,9 +177,7 @@ class DataSourceAzureNet(sources.DataSource):
return True
def device_name_to_device(self, name):
- device = name.split('.')[0]
- return util.map_device_alias(self.ds_cfg['disk_aliases'].get(device),
- alias=name)
+ return self.ds_cfg['disk_aliases'].get(name)
def get_config_obj(self):
return self.cfg