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