Fixed delete statement for juniper_config.py #4007 #3984

pull/18777/head
Stian Vikan 10 years ago committed by Matt Clay
parent 162b75068f
commit 714ced8e1c

@ -132,8 +132,8 @@ def diff_config(candidate, config):
elif action == 'delete':
for cfg in config:
if cfg.startswith(cfgline):
updates.add(cfgline)
if cfg[4:].startswith(cfgline):
updates.add(line)
return list(updates)

Loading…
Cancel
Save