Fix renaming IOL hostname replaces %h only in a single place. Fixes #1707

This commit is contained in:
grossmj
2020-01-08 01:24:47 +08:00
parent 825dc5996d
commit a47fa83cec
2 changed files with 2 additions and 2 deletions

View File

@ -1532,7 +1532,7 @@ class Router(BaseNode):
try:
with open(self.startup_config_path, "r+", encoding="utf-8", errors="replace") as f:
old_config = f.read()
new_config = re.sub(r"^hostname .+$", "hostname " + new_name, old_config, flags=re.MULTILINE)
new_config = re.sub(r"hostname .+$", "hostname " + new_name, old_config, flags=re.MULTILINE)
f.seek(0)
f.write(new_config)
except OSError as e: