1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-12-24 15:58:08 +00:00

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:

View File

@ -325,7 +325,7 @@ class IOUVM(BaseNode):
if self.startup_config_file:
content = self.startup_config_content
content = re.sub(r"^hostname .+$", "hostname " + new_name, content, flags=re.MULTILINE)
content = re.sub(r"hostname .+$", "hostname " + new_name, content, flags=re.MULTILINE)
self.startup_config_content = content
super(IOUVM, IOUVM).name.__set__(self, new_name)