diff options
author | Runar Borge <runar@borge.nu> | 2018-06-23 23:51:10 +0200 |
---|---|---|
committer | Runar Borge <runar@borge.nu> | 2018-06-23 23:51:10 +0200 |
commit | 598f1e0385c3e3d797ebe172d4e9acba88038993 (patch) | |
tree | 1b2172d3086f3c0a45daeefdb00fca2f6b2132ee /scripts | |
parent | d4e3868629fd097c57ff6c47fe60b83ba4c3e272 (diff) | |
parent | 4c6282a43bc1a2ddfe690eef88536cfcd2b88535 (diff) | |
download | vyos-1x-598f1e0385c3e3d797ebe172d4e9acba88038993.tar.gz vyos-1x-598f1e0385c3e3d797ebe172d4e9acba88038993.zip |
Merge branch 'current' of git://github.com/vyos/vyos-1x into current
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/build-command-op-templates | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/build-command-op-templates b/scripts/build-command-op-templates index 25f03cf91..0383c8982 100755 --- a/scripts/build-command-op-templates +++ b/scripts/build-command-op-templates @@ -137,7 +137,7 @@ def make_node_def(props, command): if command is not None: - node_def += "run: sudo sh -c \"{0}\"\n".format(command.text) + node_def += "run: {0}\n".format(command.text) if debug: |