diff options
author | Kim Hagen <kim.sidney@gmail.com> | 2019-04-15 15:19:14 +0200 |
---|---|---|
committer | Kim Hagen <kim.sidney@gmail.com> | 2019-04-15 15:19:14 +0200 |
commit | 0bbc3eb3a1de27fae09c478775c2e4d8c6f02f31 (patch) | |
tree | 11ef7bb030bacc929364a73de7111855c1eea87b | |
parent | 6fabe195e80852f540480f784b4ed911809c9c70 (diff) | |
download | vyos-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.py | 3 |
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) |