summaryrefslogtreecommitdiff
path: root/azurelinuxagent/common/conf.py
diff options
context:
space:
mode:
authorƁukasz 'sil2100' Zemczak <lukasz.zemczak@ubuntu.com>2018-02-15 14:28:59 +0100
committerusd-importer <ubuntu-server@lists.ubuntu.com>2018-02-15 19:08:29 +0000
commitd885152bedbdd289f7d6a3d24ab875fd4393bdff (patch)
tree02695107ec9b72658266399201bde17f806601cf /azurelinuxagent/common/conf.py
parentbdfe3a4fa9bd487ec5f40e829742e127476d2c8a (diff)
downloadvyos-walinuxagent-d885152bedbdd289f7d6a3d24ab875fd4393bdff.tar.gz
vyos-walinuxagent-d885152bedbdd289f7d6a3d24ab875fd4393bdff.zip
Import patches-unapplied version 2.2.21+really2.2.20-0ubuntu1~16.04.1 to ubuntu/xenial-proposed
Imported using git-ubuntu import. Changelog parent: bdfe3a4fa9bd487ec5f40e829742e127476d2c8a New changelog entries: * Backport bionic version to xenial. * Revert to an older upstream release: 2.2.20 (LP: #1749589). - Rename upstream tarball to 2.2.21+really2.2.20 to end up with a temporarily higher version number than what's in the archive. * debian/patches/disable_import_test.patch: refreshed patch.
Diffstat (limited to 'azurelinuxagent/common/conf.py')
-rw-r--r--azurelinuxagent/common/conf.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/azurelinuxagent/common/conf.py b/azurelinuxagent/common/conf.py
index 33f953a..045352d 100644
--- a/azurelinuxagent/common/conf.py
+++ b/azurelinuxagent/common/conf.py
@@ -40,11 +40,11 @@ class ConfigurationProvider(object):
raise AgentConfigError("Can't not parse empty configuration")
for line in content.split('\n'):
if not line.startswith("#") and "=" in line:
- parts = line.split('=', 1)
+ parts = line.split('=')
if len(parts) < 2:
continue
key = parts[0].strip()
- value = parts[1].split('#')[0].strip("\" ").strip()
+ value = parts[1].split('#')[0].strip("\" ")
self.values[key] = value if value != "None" else None
def get(self, key, default_val):
@@ -138,7 +138,6 @@ __INTEGER_OPTIONS__ = {
"Autoupdate.Frequency" : 3600
}
-
def get_configuration(conf=__conf__):
options = {}
for option in __SWITCH_OPTIONS__: