diff options
author | Christian Poessinger <christian@poessinger.com> | 2019-08-01 17:49:46 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2019-08-02 11:38:27 +0200 |
commit | e667ffa7721bca0672f53c2fc70accdeeaa3c72a (patch) | |
tree | dd346cc64b01fef9e55cdbc46ed55ec398347887 /scripts | |
parent | 8312824b556efd5cc9232a9965fb26548884fe8f (diff) | |
download | vyos-1x-e667ffa7721bca0672f53c2fc70accdeeaa3c72a.tar.gz vyos-1x-e667ffa7721bca0672f53c2fc70accdeeaa3c72a.zip |
T786: Rename tagNode environment variable VALUE to VYOS_TAGNODE_VALUE
Diffstat (limited to 'scripts')
-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"]) |