summaryrefslogtreecommitdiff
path: root/cloudinit
diff options
context:
space:
mode:
authorScott Moser <smoser@ubuntu.com>2013-07-09 16:03:22 -0400
committerScott Moser <smoser@ubuntu.com>2013-07-09 16:03:22 -0400
commit4368b264be42472c53bc3333587c7029373ad56a (patch)
treeb4ee393e17d89b72f143f588757408810e533fcc /cloudinit
parentc12845193066ac2eb14b9bbef75657d579b696b5 (diff)
downloadvyos-cloud-init-4368b264be42472c53bc3333587c7029373ad56a.tar.gz
vyos-cloud-init-4368b264be42472c53bc3333587c7029373ad56a.zip
mention using cached
Diffstat (limited to 'cloudinit')
-rw-r--r--cloudinit/sources/DataSourceAzure.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/cloudinit/sources/DataSourceAzure.py b/cloudinit/sources/DataSourceAzure.py
index 92b6172b..d8e39392 100644
--- a/cloudinit/sources/DataSourceAzure.py
+++ b/cloudinit/sources/DataSourceAzure.py
@@ -89,6 +89,9 @@ class DataSourceAzureNet(sources.DataSource):
if not found:
return False
+ if found == ddir:
+ LOG.debug("using cached datasource in %s", ddir)
+
fields = [('cmd', ['datasource', DS_NAME, 'agent_command']),
('datadir', ddir_cfgpath)]
mycfg = {}