blob: 9ff1a8a3312ee16005901a005ec354d10af87395 (
plain)
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
|
#!/bin/bash
# Start/stop/restart the ejabberd xmpp server
bin=/usr/sbin/ejabberdctl
start_ejabberd() {
echo "Starting ejabberd... "
$bin start
$bin started
}
stop_ejabberd() {
echo "Stoppping ejabberd... "
$bin stop
$bin stopped
}
restart_ejabberd() {
stop_ejabberd
start_ejabberd
}
status_ejabberd() {
$bin status
}
case "$1" in
start)
start_ejabberd ;;
stop)
stop_ejabberd ;;
restart|reload)
restart_ejabberd ;;
status)
status_ejabberd ;;
*)
echo "usage $0 start|stop|restart|status"
esac
|