summaryrefslogtreecommitdiffstats
path: root/vespaclient
diff options
context:
space:
mode:
authorBjørn Christian Seime <bjorncs@verizonmedia.com>2019-07-16 16:38:22 +0200
committerBjørn Christian Seime <bjorncs@verizonmedia.com>2019-07-16 17:41:32 +0200
commit40853cb3d5e7adbc90a03f29df217270cad4ec70 (patch)
tree4c70fc7a8f7710da8df339167d95dddd227cd449 /vespaclient
parent8f62c7d636a04c0b2e18b735548f76cfedc813ae (diff)
Introduce wrapper script sourcing vespa-security-end
Diffstat (limited to 'vespaclient')
-rw-r--r--vespaclient/CMakeLists.txt10
-rwxr-xr-xvespaclient/src/sh/vespa-get-cluster-state5
-rwxr-xr-xvespaclient/src/sh/vespa-get-node-state5
-rwxr-xr-xvespaclient/src/sh/vespa-set-node-state5
4 files changed, 22 insertions, 3 deletions
diff --git a/vespaclient/CMakeLists.txt b/vespaclient/CMakeLists.txt
index 8be8751f2c9..b0f4b2190f9 100644
--- a/vespaclient/CMakeLists.txt
+++ b/vespaclient/CMakeLists.txt
@@ -19,9 +19,13 @@ vespa_define_module(
src/vespa/vespaclient/vesparoute
)
-vespa_install_script(src/perl/bin/SetNodeState.pl vespa-set-node-state bin)
-vespa_install_script(src/perl/bin/GetNodeState.pl vespa-get-node-state bin)
-vespa_install_script(src/perl/bin/GetClusterState.pl vespa-get-cluster-state bin)
+vespa_install_script(src/sh/vespa-set-node-state vespa-set-node-state bin)
+vespa_install_script(src/sh/vespa-get-node-state vespa-get-node-state bin)
+vespa_install_script(src/sh/vespa-get-cluster-state vespa-get-cluster-state bin)
+
+vespa_install_script(src/perl/bin/SetNodeState.pl libexec/vespa)
+vespa_install_script(src/perl/bin/GetNodeState.pl libexec/vespa)
+vespa_install_script(src/perl/bin/GetClusterState.pl libexec/vespa)
install(DIRECTORY src/perl/lib/Yahoo/Vespa/
DESTINATION lib/perl5/site_perl/Yahoo/Vespa
diff --git a/vespaclient/src/sh/vespa-get-cluster-state b/vespaclient/src/sh/vespa-get-cluster-state
new file mode 100755
index 00000000000..a71a8a73abf
--- /dev/null
+++ b/vespaclient/src/sh/vespa-get-cluster-state
@@ -0,0 +1,5 @@
+#!/usr/bin/env bash
+
+eval $(vespa-security-env)
+
+$VESPA_HOME/libexec/vespa/GetClusterState.pl "$@" \ No newline at end of file
diff --git a/vespaclient/src/sh/vespa-get-node-state b/vespaclient/src/sh/vespa-get-node-state
new file mode 100755
index 00000000000..57709f3923a
--- /dev/null
+++ b/vespaclient/src/sh/vespa-get-node-state
@@ -0,0 +1,5 @@
+#!/usr/bin/env bash
+
+eval $(vespa-security-env)
+
+$VESPA_HOME/libexec/vespa/GetNodeState.pl "$@" \ No newline at end of file
diff --git a/vespaclient/src/sh/vespa-set-node-state b/vespaclient/src/sh/vespa-set-node-state
new file mode 100755
index 00000000000..25c8fff513b
--- /dev/null
+++ b/vespaclient/src/sh/vespa-set-node-state
@@ -0,0 +1,5 @@
+#!/usr/bin/env bash
+
+eval $(vespa-security-env)
+
+$VESPA_HOME/libexec/vespa/SetNodeState.pl "$@"