aboutsummaryrefslogtreecommitdiff
path: root/src/ejabberd.init.template
blob: 6659557b60efac163e9ef1536dd506acc6807e91 (plain) (blame)
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
45
46
#! /bin/sh
set -o errexit
set -o nounset

DIR=@ctlscriptpath@
CTL="$DIR"/ejabberdctl
USER=@installuser@

test -x "$CTL" || {
	echo "ERROR: ejabberd not found: $DIR"
	exit 1
}
grep ^"$USER": /etc/passwd >/dev/null || {
	echo "ERROR: System user not found: $USER"
	exit 2
}

export PATH="${PATH:+$PATH:}/usr/sbin:/sbin"

case "$1" in
  start)
    test -x "$CTL" || exit 0
    echo "Starting ejabberd..."
    su - $USER -c "$CTL start"
    su - $USER -c "$CTL started"
    echo "done."
    ;;
  stop)
    test -x "$CTL" || exit 0
    echo "Stopping ejabberd..."
    su - $USER -c "$CTL stop"
    su - $USER -c "$CTL stopped"
    echo "done."
    ;;

  force-reload|restart)
    "$0" stop
    "$0" start
    ;;

  *)
    echo "Usage: $0 {start|stop|restart|force-reload}"
    exit 1
esac

exit 0