summaryrefslogtreecommitdiff
path: root/cloudinit/sources/DataSourceNoCloud.py
diff options
context:
space:
mode:
authorJohann Queuniet <jqueuniet@users.noreply.github.com>2020-09-18 18:02:15 +0000
committerGitHub <noreply@github.com>2020-09-18 14:02:15 -0400
commit6b5c306b537aafeded249fc82a3317fba8214508 (patch)
treedd84ba783caca4c5cc76fd8899ada25759a6d65b /cloudinit/sources/DataSourceNoCloud.py
parent5fc34d81a002f6ca0706f5285ee15b919c3d8d2e (diff)
downloadvyos-cloud-init-6b5c306b537aafeded249fc82a3317fba8214508.tar.gz
vyos-cloud-init-6b5c306b537aafeded249fc82a3317fba8214508.zip
Add vendor-data support to seedfrom parameter for NoCloud and OVF (#570)
Diffstat (limited to 'cloudinit/sources/DataSourceNoCloud.py')
-rw-r--r--cloudinit/sources/DataSourceNoCloud.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/cloudinit/sources/DataSourceNoCloud.py b/cloudinit/sources/DataSourceNoCloud.py
index e408d730..d4a175e8 100644
--- a/cloudinit/sources/DataSourceNoCloud.py
+++ b/cloudinit/sources/DataSourceNoCloud.py
@@ -157,13 +157,14 @@ class DataSourceNoCloud(sources.DataSource):
# This could throw errors, but the user told us to do it
# so if errors are raised, let them raise
- (md_seed, ud) = util.read_seeded(seedfrom, timeout=None)
+ (md_seed, ud, vd) = util.read_seeded(seedfrom, timeout=None)
LOG.debug("Using seeded cache data from %s", seedfrom)
# Values in the command line override those from the seed
mydata['meta-data'] = util.mergemanydict([mydata['meta-data'],
md_seed])
mydata['user-data'] = ud
+ mydata['vendor-data'] = vd
found.append(seedfrom)
# Now that we have exhausted any other places merge in the defaults