summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKim Hagen <kim.sidney@gmail.com>2019-04-15 15:19:14 +0200
committerKim Hagen <kim.sidney@gmail.com>2019-04-15 15:19:14 +0200
commit0bbc3eb3a1de27fae09c478775c2e4d8c6f02f31 (patch)
tree11ef7bb030bacc929364a73de7111855c1eea87b
parent6fabe195e80852f540480f784b4ed911809c9c70 (diff)
downloadvyos-cloud-init-0bbc3eb3a1de27fae09c478775c2e4d8c6f02f31.tar.gz
vyos-cloud-init-0bbc3eb3a1de27fae09c478775c2e4d8c6f02f31.zip
disable deployPkgPluginPath so vmware will not timeout on getting the customization file
-rw-r--r--cloudinit/sources/DataSourceOVF.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/cloudinit/sources/DataSourceOVF.py b/cloudinit/sources/DataSourceOVF.py
index f9304644..0edf76aa 100644
--- a/cloudinit/sources/DataSourceOVF.py
+++ b/cloudinit/sources/DataSourceOVF.py
@@ -103,7 +103,8 @@ class DataSourceOVF(sources.DataSource):
plugin = "libdeployPkgPlugin.so"
deployPkgPluginPath = None
for path in search_paths:
- deployPkgPluginPath = search_file(path, plugin)
+ # Ignore deployPkgPluginPath for now.
+ #deployPkgPluginPath = search_file(path, plugin)
if deployPkgPluginPath:
LOG.debug("Found the customization plugin at %s",
deployPkgPluginPath)