summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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)