Merge "Remove SM distribution jobs"
[releng/builder.git] / jjb / integration / integration-configure-clustering.sh
1 #!/bin/bash
2 #@IgnoreInspection BashAddShebang
3 # Activate robotframework virtualenv
4 # ${ROBOT_VENV} comes from the integration-install-robotframework.sh
5 # script.
6 # shellcheck disable=SC1090,SC1091
7 . "${ROBOT_VENV}/bin/activate"
8 source /tmp/common-functions.sh "${BUNDLEFOLDER}"
9
10 echo "#################################################"
11 echo "##         Configure Cluster and Start         ##"
12 echo "#################################################"
13
14 get_features
15
16 # shellcheck disable=SC2034
17 nodes_list=$(get_nodes_list)
18
19 run_plan "script"
20
21 add_jvm_support
22
23 create_configuration_script
24
25 create_startup_script
26
27 copy_and_run_configuration_script
28
29 run_plan "config"
30
31 copy_and_run_startup_script
32
33 # vim: ts=4 sw=4 sts=4 et ft=sh :