diff options
author | Christian Poessinger <christian@poessinger.com> | 2019-08-05 12:29:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-05 12:29:16 +0200 |
commit | 2afd1163361ea2ad3e94f51eac882007d8f9b7cf (patch) | |
tree | 975f51ccf8c749257d631fab9198c4ed521c06b0 /scripts/build-command-templates | |
parent | b5c1b646beb025bce40cf1a5fb647ab39070da58 (diff) | |
parent | f8cc906b8ef3427b3a8686777d5bc2e3acbe4b7e (diff) | |
download | vyos-1x-2afd1163361ea2ad3e94f51eac882007d8f9b7cf.tar.gz vyos-1x-2afd1163361ea2ad3e94f51eac882007d8f9b7cf.zip |
Merge pull request #96 from c-po/t1156-bridge
Diffstat (limited to 'scripts/build-command-templates')
-rwxr-xr-x | scripts/build-command-templates | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/build-command-templates b/scripts/build-command-templates index a7312f77b..ba80eadb2 100755 --- a/scripts/build-command-templates +++ b/scripts/build-command-templates @@ -227,7 +227,7 @@ def make_node_def(props): if "owner" in props: if "tag" in props: - node_def += "end: sudo sh -c \"VALUE='$VAR(@)' {0}\"\n".format(props["owner"]) + node_def += "end: sudo sh -c \"VYOS_TAGNODE_VALUE='$VAR(@)' {0}\"\n".format(props["owner"]) else: node_def += "end: sudo sh -c \"{0}\"\n".format(props["owner"]) |