diff options
author | Scott Moser <smoser@ubuntu.com> | 2016-12-07 19:17:03 +0100 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2016-12-11 20:56:23 -0500 |
commit | a9d41de47a58d967ae3fd6a7749f8143a14424d3 (patch) | |
tree | 49a0922dfe7ee7d8224e5e10bd5171008c8cf9f8 /cloudinit/sources/DataSourceCloudSigma.py | |
parent | cbf93eb4ae9fba0797ab4ae7d62bc0d64611fa7e (diff) | |
download | vyos-cloud-init-a9d41de47a58d967ae3fd6a7749f8143a14424d3.tar.gz vyos-cloud-init-a9d41de47a58d967ae3fd6a7749f8143a14424d3.zip |
CloudSigma: Fix bug where datasource was not loaded in local search.
CloudSigma would not get any datasources loaded during cloud-init local.
Thus, when the network datasource was removed, *no* CloudSigma
datasources would be loaded.
LP: #1648380
Diffstat (limited to 'cloudinit/sources/DataSourceCloudSigma.py')
-rw-r--r-- | cloudinit/sources/DataSourceCloudSigma.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cloudinit/sources/DataSourceCloudSigma.py b/cloudinit/sources/DataSourceCloudSigma.py index be74503b..448e2a4d 100644 --- a/cloudinit/sources/DataSourceCloudSigma.py +++ b/cloudinit/sources/DataSourceCloudSigma.py @@ -115,7 +115,7 @@ DataSourceCloudSigmaNet = DataSourceCloudSigma # Used to match classes to dependencies. Since this datasource uses the serial # port network is not really required, so it's okay to load without it, too. datasources = [ - (DataSourceCloudSigma, (sources.DEP_FILESYSTEM)), + (DataSourceCloudSigma, (sources.DEP_FILESYSTEM, )), ] |