diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-02-11 08:53:24 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-11 08:53:24 +0100 |
commit | 14247c27c1446241a64da713f885b57dc82e3228 (patch) | |
tree | 486ed03cafd0241447d070c8621fa7274ee33adc | |
parent | 224fd3638d62acd72a67d324350dedf32ad06b42 (diff) | |
parent | 91130ca7c386ecba291694ff08e521438d352e78 (diff) | |
download | vyos-1x-14247c27c1446241a64da713f885b57dc82e3228.tar.gz vyos-1x-14247c27c1446241a64da713f885b57dc82e3228.zip |
Merge pull request #730 from bstepler/T3290
conntrack: T3290: remove references to removed GRE plugins
-rwxr-xr-x | src/migration-scripts/conntrack/1-to-2 | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/migration-scripts/conntrack/1-to-2 b/src/migration-scripts/conntrack/1-to-2 new file mode 100755 index 000000000..4fc88a1ed --- /dev/null +++ b/src/migration-scripts/conntrack/1-to-2 @@ -0,0 +1,32 @@ +#!/usr/bin/env python3 + +# Delete "set system conntrack modules gre" option + +import sys + +from vyos.configtree import ConfigTree + +if (len(sys.argv) < 1): + print("Must specify file name!") + sys.exit(1) + +file_name = sys.argv[1] + +with open(file_name, 'r') as f: + config_file = f.read() + +config = ConfigTree(config_file) + +if not config.exists(['system', 'conntrack', 'modules', 'gre']): + # Nothing to do + sys.exit(0) +else: + # Delete abandoned node + config.delete(['system', 'conntrack', 'modules', 'gre']) + + 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) |