-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclient.bash
44 lines (32 loc) · 1.56 KB
/
client.bash
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# This bash script will run step by step the following bash commands to run the ELK Stack
# This section will run the install.bash file within a condition variable
# If the condition variable is set to true, the install.bash file will be run
# If the condition variable is not set to true, the install.bash file will not be run
if [ -n "$INSTALL_ELASTICSEARCH" ]; then
./install.bash
./install_unit.bash
fi
# This section will run the configure.bash file within a condition variable
# If the condition variable is set to true, the configure.bash file will be run
# If the condition variable is not set to true, the configure.bash file will not be run
if [ -n "$CONFIGURE_ELASTICSEARCH" ]; then
./configure.bash
fi
# This section will run the start.bash file within a condition variable
# If the condition variable is set to true, the start.bash file will be run
# If the condition variable is not set to true, the start.bash file will not be run
# This will ask the user if they would like to start the ELK Stack
echo " Would you like to start the application? (y/n)"
read start_response
if [ "$start_response" = "y" ]; then
./start.bash
fi
# This section will run the stop.bash file within a condition variable
# If the condition variable is set to true, the stop.bash file will be run
# If the condition variable is not set to true, the stop.bash file will not be run
# This will ask the user if they would like to stop the ELK Stack
echo " Would you like to stop the application? (y/n)"
read stop_response
if [ "$stop_response" = "y" ]; then
./stop.bash
fi