diff options
-rwxr-xr-x | src/conf_mode/host_name.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/conf_mode/host_name.py b/src/conf_mode/host_name.py index a71f9f88f..4652050ab 100755 --- a/src/conf_mode/host_name.py +++ b/src/conf_mode/host_name.py @@ -45,8 +45,7 @@ default_config_data = { 'static_host_mapping': {} } -def get_config(): - conf = Config() +def get_config(conf): hosts = copy.deepcopy(default_config_data) if conf.exists("system host-name"): @@ -176,8 +175,9 @@ def apply(config): if __name__ == '__main__': try: - c = get_config() - verify(c) + conf = Config() + c = get_config(conf) + verify(conf, c) generate(c) apply(c) except ConfigError as e: |