summaryrefslogtreecommitdiff
path: root/src/utils/vyos-config-to-commands
diff options
context:
space:
mode:
authorJohn Estabrook <jestabro@sentrium.io>2019-12-03 11:26:12 -0600
committerGitHub <noreply@github.com>2019-12-03 11:26:12 -0600
commit3ea9bcedd56b898005ce9c69148347a73f0d5d7e (patch)
treeda670c6d31d9cef41de2fb21d460e5818cbfd574 /src/utils/vyos-config-to-commands
parent41212805fa9db0db590b8207372a3d2ec7382fef (diff)
parent145b937d3d8e3734d987b5486fe861f660c6e79b (diff)
downloadvyos-1x-3ea9bcedd56b898005ce9c69148347a73f0d5d7e.tar.gz
vyos-1x-3ea9bcedd56b898005ce9c69148347a73f0d5d7e.zip
Merge pull request #170 from jestabro/T1801
T1801: move escaping of backslashes into configtree
Diffstat (limited to 'src/utils/vyos-config-to-commands')
-rwxr-xr-xsrc/utils/vyos-config-to-commands8
1 files changed, 0 insertions, 8 deletions
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()