summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2022-09-14 06:10:39 +0200
committerGitHub <noreply@github.com>2022-09-14 06:10:39 +0200
commit0857b11fef43e59dac7f5d01ea4f0cb721f8f00b (patch)
tree851cc4f28ae6a642e22b902efedd31ab74c73c80
parent04c3414342c1cc296f8a56d4112f77b1a463cc70 (diff)
parentbdf5350fee8b954e528983ad07baf62abd6cdba0 (diff)
Merge pull request #24034 from vespa-engine/arnej/flip-cluster-utils
switch to "go" version of cluster-state utilities
-rw-r--r--client/CMakeLists.txt3
-rw-r--r--vespaclient/CMakeLists.txt4
2 files changed, 3 insertions, 4 deletions
diff --git a/client/CMakeLists.txt b/client/CMakeLists.txt
index 9ab262cffb9..052745f6f2f 100644
--- a/client/CMakeLists.txt
+++ b/client/CMakeLists.txt
@@ -14,3 +14,6 @@ add_custom_target(vespalog_logfmt ALL DEPENDS ${GODIR}/bin/vespa-logfmt)
install(PROGRAMS ${GODIR}/bin/script-utils DESTINATION libexec/vespa)
install_symlink(libexec/vespa/script-utils bin/vespa-logfmt)
install_symlink(libexec/vespa/script-utils bin/vespa-deploy)
+install_symlink(libexec/vespa/script-utils bin/vespa-get-cluster-state)
+install_symlink(libexec/vespa/script-utils bin/vespa-get-node-state)
+install_symlink(libexec/vespa/script-utils bin/vespa-set-node-state)
diff --git a/vespaclient/CMakeLists.txt b/vespaclient/CMakeLists.txt
index a427198a22c..86e30ab1051 100644
--- a/vespaclient/CMakeLists.txt
+++ b/vespaclient/CMakeLists.txt
@@ -18,10 +18,6 @@ vespa_define_module(
src/vespa/vespaclient/vesparoute
)
-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)