@@ -8,23 +8,23 @@ name="webgui"
8
8
rcvar=` set_rcvar`
9
9
10
10
extra_commands=" help startweb stopweb restartweb\
11
- startmodperl stopmodperl restartmodperl \
11
+ startstarman stopstarman restartstarman \
12
12
startnginx stopnginx restartnginx\
13
13
startmysql stopmysql restartmysql\
14
14
startspectre stopspectre restartspectre\
15
15
"
16
16
help_cmd=" ${name} _help"
17
17
start_cmd=" ${name} _start"
18
18
stop_cmd=" ${name} _stop"
19
- startweb_cmd=" ${startmodperl_cmd } ; ${startnginx_cmd} "
20
- stopweb_cmd=" ${stopnginx_cmd} ; ${stopmodperl_cmd } "
19
+ startweb_cmd=" ${startstarman_cmd } ; ${startnginx_cmd} "
20
+ stopweb_cmd=" ${stopnginx_cmd} ; ${stopstarman_cmd } "
21
21
restartweb_cmd=" ${stopweb_cmd} ; ${startweb_cmd} "
22
22
startnginx_cmd=" ${name} _startnginx"
23
23
stopnginx_cmd=" ${name} _stopnginx"
24
24
restartnginx_cmd=" ${stopnginx_cmd} ; ${startnginx_cmd} "
25
- startmodperl_cmd =" ${name} _startmodperl "
26
- stopmodperl_cmd =" ${name} _stopmodperl "
27
- restartmodperl_cmd =" ${stopmodperl_cmd } ; ${startmodperl_cmd } "
25
+ startstarman_cmd =" ${name} _startstarman "
26
+ stopstarman_cmd =" ${name} _stopstarman "
27
+ restartstarman_cmd =" ${stopstarman_cmd } ; ${startstarman_cmd } "
28
28
startmysql_cmd=" ${name} _startmysql"
29
29
stopmysql_cmd=" ${name} _stopmysql"
30
30
restartmysql_cmd=" ${stopmysql_cmd} ; ${startmysql_cmd} "
@@ -41,7 +41,7 @@ webgui_help() {
41
41
echo " -- Start/stop all WRE services"
42
42
echo " $0 { startweb | stopweb | restartweb }"
43
43
echo " -- Start/stop both Apache services"
44
- echo " $0 { startmodperl | stopmodperl | restartmodperl }"
44
+ echo " $0 { startstarman | stopstarman | restartstarman }"
45
45
echo " -- Start/stop mod_perl (WebGUI) Apache service"
46
46
echo " $0 { startnginx | stopnginx | restartnginx }"
47
47
echo " -- Start/stop mod_proxy Apache service"
@@ -60,12 +60,12 @@ webgui_stop() {
60
60
wreservice.pl --quiet --stop all
61
61
}
62
62
63
- webgui_startmodperl () {
64
- wreservice.pl --quiet --start modperl
63
+ webgui_startstarman () {
64
+ wreservice.pl --quiet --start starman
65
65
}
66
66
67
- webgui_stopmodperl () {
68
- wreservice.pl --quiet --stop modperl
67
+ webgui_stopstarman () {
68
+ wreservice.pl --quiet --stop starman
69
69
}
70
70
71
71
webgui_startnginx () {
0 commit comments