summaryrefslogtreecommitdiff
path: root/cloudinit/sources/DataSourceAzure.py
diff options
context:
space:
mode:
authorScott Moser <smoser@ubuntu.com>2013-09-27 12:26:25 -0400
committerScott Moser <smoser@ubuntu.com>2013-09-27 12:26:25 -0400
commit55490f1f040f7e00985375872938c80e41803f4e (patch)
tree74e9a676d787761c9711205a1f4d0493bcf79e3c /cloudinit/sources/DataSourceAzure.py
parent4d13fa79b32636bfab27540c76f46fcfb7ce7f5c (diff)
downloadvyos-cloud-init-55490f1f040f7e00985375872938c80e41803f4e.tar.gz
vyos-cloud-init-55490f1f040f7e00985375872938c80e41803f4e.zip
fix tests small other changes
Also * cloudinit/sources/DataSourceAzure.py: invalid xml in a file called 'ovfenv.xml' should raise BrokenAzureDatasource rather than NonAzureDataSource * cloudinit/sources/DataSourceSmartOS.py: cloudinit/sources/DataSourceAzure.py use 'ephemeral0' as the device name in builtin fs_setup * tests/unittests/test_datasource/test_azure.py: * always patch 'list_possible_azure_ds_devs' as it calls find_devs_with which calls blkid, and dramatically was slowing down tests on my system. * test_user_cfg_set_agent_command_plain: fix this test to not depend on specific format of yaml.dumps(). * test_userdata_arrives: add a test that user-data makes it through
Diffstat (limited to 'cloudinit/sources/DataSourceAzure.py')
-rw-r--r--cloudinit/sources/DataSourceAzure.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/cloudinit/sources/DataSourceAzure.py b/cloudinit/sources/DataSourceAzure.py
index f7ca9eb6..a9680d79 100644
--- a/cloudinit/sources/DataSourceAzure.py
+++ b/cloudinit/sources/DataSourceAzure.py
@@ -54,7 +54,7 @@ BUILTIN_CLOUD_CONFIG = {
'layout': True,
'overwrite': False}
},
- 'fs_setup': [{'filesystem': 'ext4', 'device': '/dev/sdb',
+ 'fs_setup': [{'filesystem': 'ext4', 'device': 'ephemeral0',
'partition': 'auto'}],
}
@@ -363,7 +363,7 @@ def read_azure_ovf(contents):
try:
dom = minidom.parseString(contents)
except Exception as e:
- raise NonAzureDataSource("invalid xml: %s" % e)
+ raise BrokenAzureDataSource("invalid xml: %s" % e)
results = find_child(dom.documentElement,
lambda n: n.localName == "ProvisioningSection")