Fix restoration of private config when using dynamips

Fix #906
pull/916/head
Julien Duponchelle 7 years ago
parent 420c3792eb
commit 366c567864
No known key found for this signature in database
GPG Key ID: CE8B29639E07F5E8

@ -534,6 +534,8 @@ class Dynamips(BaseManager):
elif private_config_content:
private_config_path = self._create_config(vm, default_private_config_path, private_config_content)
yield from vm.set_configs(vm.startup_config, private_config_path)
elif os.path.isfile(default_private_config_path) and os.path.getsize(default_private_config_path) > 0:
yield from vm.set_configs(vm.startup_config, default_private_config_path)
def _create_config(self, vm, path, content=None):
"""

Loading…
Cancel
Save