diff options
author | Ruben Pollan <meskio@sindominio.net> | 2017-08-31 10:57:41 +0200 |
---|---|---|
committer | Ruben Pollan <meskio@sindominio.net> | 2017-08-31 12:56:44 +0200 |
commit | f721c5ef0cdd9952d014a1dc9e3a944afc0f7f45 (patch) | |
tree | 990b0a2f03b2a71426e197ad64909f911143001f /src/leap/bitmask/core | |
parent | 0db7a322a103b9886e74d9e017aa4a6298fdbe55 (diff) |
[feat] add the posibility of extracting a section of the config
So each service can have it's own config section passed to the
constructor.
Diffstat (limited to 'src/leap/bitmask/core')
-rw-r--r-- | src/leap/bitmask/core/configurable.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/leap/bitmask/core/configurable.py b/src/leap/bitmask/core/configurable.py index 262f0300..5a9e5c94 100644 --- a/src/leap/bitmask/core/configurable.py +++ b/src/leap/bitmask/core/configurable.py @@ -42,6 +42,9 @@ class ConfigurableService(service.MultiService): def set_config(self, section, option, value): return self.cfg.set(section, option, value) + def get_config_section(self, section): + return self.cfg.get_section(section) + DEFAULT_CONFIG = """ [services] |