From 145b937d3d8e3734d987b5486fe861f660c6e79b Mon Sep 17 00:00:00 2001 From: John Estabrook Date: Tue, 26 Nov 2019 11:51:54 -0600 Subject: T1801: move escaping of backslashes into configtree --- src/utils/vyos-config-to-commands | 8 -------- 1 file changed, 8 deletions(-) (limited to 'src/utils') diff --git a/src/utils/vyos-config-to-commands b/src/utils/vyos-config-to-commands index 7147bc5ff..8b50f7c5d 100755 --- a/src/utils/vyos-config-to-commands +++ b/src/utils/vyos-config-to-commands @@ -19,14 +19,6 @@ else: except OSError as e: print("Could not read config file {0}: {1}".format(file_name, e), file=sys.stderr) -# This script is usually called with the output of "cli-shell-api showCfg", which does not -# escape backslashes. "ConfigTree()" expects escaped backslashes when parsing a config -# string (and also prints them itself). Therefore this script would fail. -# Manually escape backslashes here to handle backslashes in any configuration strings -# properly. The alternative would be to modify the output of "cli-shell-api showCfg", -# but that may be break other things who rely on that specific output. -config_string = config_string.replace("\\", "\\\\") - try: config = ConfigTree(config_string) commands = config.to_commands() -- cgit v1.2.3