diff options
author | Scott Moser <smoser@ubuntu.com> | 2013-09-27 13:00:35 -0400 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2013-09-27 13:00:35 -0400 |
commit | e192858b1d1e0212455b5a4bb017c8d7216fc12f (patch) | |
tree | 33b84d06fb69b9054f2c030a7a9c8bd856f2fe9b /cloudinit | |
parent | d3f514791fdf2606dee4d6dc3de63a4c31a48dd4 (diff) | |
download | vyos-cloud-init-e192858b1d1e0212455b5a4bb017c8d7216fc12f.tar.gz vyos-cloud-init-e192858b1d1e0212455b5a4bb017c8d7216fc12f.zip |
azure data source 'ephemeral0' point to '/dev/sdb', not /dev/sdb1
in general block device mappings should be to block devices, not
partitoins.
Diffstat (limited to 'cloudinit')
-rw-r--r-- | cloudinit/sources/DataSourceAzure.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cloudinit/sources/DataSourceAzure.py b/cloudinit/sources/DataSourceAzure.py index a9680d79..7ba6cea8 100644 --- a/cloudinit/sources/DataSourceAzure.py +++ b/cloudinit/sources/DataSourceAzure.py @@ -45,7 +45,7 @@ BUILTIN_DS_CONFIG = { 'command': BOUNCE_COMMAND, 'hostname_command': 'hostname', }, - 'disk_aliases': {'ephemeral0': '/dev/sdb1'}, + 'disk_aliases': {'ephemeral0': '/dev/sdb'}, } BUILTIN_CLOUD_CONFIG = { |