DataSourceOVF: change the default instance id from nocloud to iid-dsovf

This commit is contained in:
Scott Moser
2011-09-01 11:10:10 -04:00
parent 9a769a9f0e
commit 9579226bf2
2 changed files with 2 additions and 1 deletions

View File

@@ -52,6 +52,7 @@
- DataSourceNoCloud, DataSourceOVF : do not provide a default hostname.
This way the configured hostname of the system will be used if not provided
by metadata (LP: #838280)
- DataSourceOVF: change the default instance id to 'iid-dsovf' from 'nocloud'
0.6.1:
- fix bug in fixing permission on /var/log/cloud-init.log (LP: #704509)

View File

@@ -51,7 +51,7 @@ class DataSourceOVF(DataSource.DataSource):
ud = ""
defaults = {
"instance-id" : "nocloud"
"instance-id" : "iid-dsovf"
}
(seedfile, contents) = get_ovf_env(seeddir)