summaryrefslogtreecommitdiff
path: root/src/migration-scripts
diff options
context:
space:
mode:
Diffstat (limited to 'src/migration-scripts')
-rwxr-xr-xsrc/migration-scripts/isis/0-to-17
1 files changed, 4 insertions, 3 deletions
diff --git a/src/migration-scripts/isis/0-to-1 b/src/migration-scripts/isis/0-to-1
index 6773f4009..93cbbbed5 100755
--- a/src/migration-scripts/isis/0-to-1
+++ b/src/migration-scripts/isis/0-to-1
@@ -47,12 +47,13 @@ config.copy(isis_base, tmp_base)
# Now it's save to delete the old configuration
config.delete(base)
-# Rename temporary copy to new final config and set domain key
+# Rename temporary copy to new final config (IS-IS domain key is static and no
+# longer required to be set via CLI)
config.rename(tmp_base, 'isis')
try:
with open(file_name, 'w') as f:
f.write(config.to_string())
except OSError as e:
- print("Failed to save the modified config: {}".format(e))
- sys.exit(1)
+ print(f'Failed to save the modified config: {e}')
+ exit(1)