diff options
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | cloudinit/DataSourceOVF.py | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -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) |