summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog1
-rw-r--r--cloudinit/DataSourceOVF.py2
2 files changed, 2 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 2e16cf18..b1d30453 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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)
diff --git a/cloudinit/DataSourceOVF.py b/cloudinit/DataSourceOVF.py
index 0159eed7..3dad4b1e 100644
--- a/cloudinit/DataSourceOVF.py
+++ b/cloudinit/DataSourceOVF.py
@@ -51,7 +51,7 @@ class DataSourceOVF(DataSource.DataSource):
ud = ""
defaults = {
- "instance-id" : "nocloud"
+ "instance-id" : "iid-dsovf"
}
(seedfile, contents) = get_ovf_env(seeddir)