@@ -31,15 +31,15 @@ if [ "${commandname}" != "INSTALL" ] && [ "${commandname}" != "UPDATE-LGSM" ] &&
31
31
check_system_dir.sh
32
32
fi
33
33
34
- allowed_commands_array=(START DEBUG)
34
+ allowed_commands_array=(DEBUG RESTART START )
35
35
for allowed_command in " ${allowed_commands_array[@]} " ; do
36
36
if [ " ${allowed_command} " == " ${commandname} " ]; then
37
37
check_executable.sh
38
38
fi
39
39
done
40
40
41
41
if [ " $( whoami) " != " root" ]; then
42
- allowed_commands_array=(DEBUG START INSTALL)
42
+ allowed_commands_array=(DEBUG RESTART START INSTALL)
43
43
for allowed_command in " ${allowed_commands_array[@]} " ; do
44
44
if [ " ${allowed_command} " == " ${commandname} " ]; then
45
45
check_glibc.sh
@@ -54,21 +54,21 @@ for allowed_command in "${allowed_commands_array[@]}"; do
54
54
fi
55
55
done
56
56
57
- allowed_commands_array=(BACKUP DEBUG DETAILS START UPDATE)
57
+ allowed_commands_array=(BACKUP DEBUG DETAILS RESTART START UPDATE)
58
58
for allowed_command in " ${allowed_commands_array[@]} " ; do
59
59
if [ " ${allowed_command} " == " ${commandname} " ]; then
60
60
check_deps.sh
61
61
fi
62
62
done
63
63
64
- allowed_commands_array=(CONSOLE DEBUG MONITOR START STOP)
64
+ allowed_commands_array=(CONSOLE DEBUG MONITOR RESTART START STOP)
65
65
for allowed_command in " ${allowed_commands_array[@]} " ; do
66
66
if [ " ${allowed_command} " == " ${commandname} " ]; then
67
67
check_config.sh
68
68
fi
69
69
done
70
70
71
- allowed_commands_array=(DEBUG DETAILS DEV-QUERY-RAW MONITOR POST_DETAILS START STOP POST-DETAILS)
71
+ allowed_commands_array=(DEBUG DETAILS DEV-QUERY-RAW MONITOR POST_DETAILS RESTART START STOP POST-DETAILS)
72
72
for allowed_command in " ${allowed_commands_array[@]} " ; do
73
73
if [ " ${allowed_command} " == " ${commandname} " ]; then
74
74
if [ -z " ${installflag} " ]; then
@@ -77,7 +77,7 @@ for allowed_command in "${allowed_commands_array[@]}"; do
77
77
fi
78
78
done
79
79
80
- allowed_commands_array=(DEBUG START UPDATE VALIDATE CHECK-UPDATE)
80
+ allowed_commands_array=(DEBUG RESTART START UPDATE VALIDATE CHECK-UPDATE)
81
81
for allowed_command in " ${allowed_commands_array[@]} " ; do
82
82
if [ " ${allowed_command} " == " ${commandname} " ]; then
83
83
if [ " ${appid} " ]; then
@@ -86,21 +86,21 @@ for allowed_command in "${allowed_commands_array[@]}"; do
86
86
fi
87
87
done
88
88
89
- allowed_commands_array=(CHANGE-PASSWORD DETAILS MONITOR START STOP UPDATE VALIDATE POST-DETAILS)
89
+ allowed_commands_array=(CHANGE-PASSWORD DETAILS MONITOR RESTART START STOP UPDATE VALIDATE POST-DETAILS)
90
90
for allowed_command in " ${allowed_commands_array[@]} " ; do
91
91
if [ " ${allowed_command} " == " ${commandname} " ]; then
92
92
check_status.sh
93
93
fi
94
94
done
95
95
96
- allowed_commands_array=(DEBUG START INSTALL)
96
+ allowed_commands_array=(DEBUG RESTART START INSTALL)
97
97
for allowed_command in " ${allowed_commands_array[@]} " ; do
98
98
if [ " ${allowed_command} " == " ${commandname} " ]; then
99
99
check_system_requirements.sh
100
100
fi
101
101
done
102
102
103
- allowed_commands_array=(DETAILS MONITOR START STOP UPDATE VALIDATE POST-DETAILS)
103
+ allowed_commands_array=(DETAILS MONITOR RESTART START STOP UPDATE VALIDATE POST-DETAILS)
104
104
for allowed_command in " ${allowed_commands_array[@]} " ; do
105
105
if [ " ${allowed_command} " == " ${commandname} " ]; then
106
106
check_gamedig.sh
0 commit comments