Added Start/Stop Scripts
This commit is contained in:
parent
5903684dda
commit
325e961419
81
startup/init.d/kopano-spamd
Normal file
81
startup/init.d/kopano-spamd
Normal file
@ -0,0 +1,81 @@
|
||||
#! /bin/sh
|
||||
#
|
||||
### BEGIN INIT INFO
|
||||
# Provides: kopano-spamd
|
||||
# Required-Start: $syslog $network $remote_fs
|
||||
# Required-Stop: $syslog $network $remote_fs
|
||||
# Should-Start: kopano-server
|
||||
# Should-Stop: kopano-server
|
||||
# Default-Start: 2 3 4 5
|
||||
# Default-Stop: 0 1 6
|
||||
# Short-Description: Kopano Core Spam Daemon
|
||||
### END INIT INFO
|
||||
|
||||
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
|
||||
SPAMD=/usr/local/bin/kopano-spamd.py
|
||||
DESC="spamd"
|
||||
NAME=`basename $SPAMD`
|
||||
#QUIETDAEMON=--quiet
|
||||
PIDFILE=/var/run/kopano/spamd.pid
|
||||
|
||||
test -x $SPAMD || exit 0
|
||||
|
||||
# Include defaults if available
|
||||
if [ -f /etc/default/kopano ] ; then
|
||||
. /etc/default/kopano
|
||||
fi
|
||||
if [ -z "$KOPANO_LOCALE" ]; then
|
||||
KOPANO_LOCALE="C"
|
||||
fi
|
||||
|
||||
SPAMD_OPTS=""
|
||||
|
||||
#set -e
|
||||
|
||||
. /lib/lsb/init-functions
|
||||
|
||||
case "$1" in
|
||||
start)
|
||||
if [ "$SPAMD_ENABLED" = "no" ]; then
|
||||
log_warning_msg "Spam daemon not enabled in /etc/default/kopano ... not starting"
|
||||
exit 0
|
||||
fi
|
||||
log_begin_msg "Starting $DESC: $NAME"
|
||||
install -dm0775 -o kopano -g kopano /var/run/kopano
|
||||
export LC_ALL=$KOPANO_LOCALE
|
||||
export LANG=$KOPANO_LOCALE
|
||||
start-stop-daemon --start $QUIETDAEMON --pidfile $PIDFILE --exec /usr/bin/python $SPAMD -- $SPAMD_OPTS >/dev/null 2>&1
|
||||
log_end_msg $?
|
||||
unset LC_ALL LANG
|
||||
;;
|
||||
stop)
|
||||
log_begin_msg "Stopping $DESC: $NAME"
|
||||
start-stop-daemon --stop $QUIETDAEMON --pidfile $PIDFILE --retry TERM/15/KILL --exec /usr/bin/python $SPAMD >/dev/null
|
||||
RETVAL=$?
|
||||
rm -f $PIDFILE
|
||||
test "$RETVAL" -eq 0
|
||||
log_end_msg "$?"
|
||||
;;
|
||||
restart)
|
||||
$0 stop
|
||||
$0 start
|
||||
;;
|
||||
status)
|
||||
status_of_proc -p $PIDFILE "$SPAMD" "$NAME" && exit 0 || exit $?
|
||||
;;
|
||||
reload|force-reload)
|
||||
log_begin_msg "Reloading $DESC: $NAME"
|
||||
start-stop-daemon --stop $QUIETDAEMON --signal HUP --pidfile $PIDFILE --exec /usr/bin/python $SPAMD
|
||||
log_end_msg $?
|
||||
;;
|
||||
try-restart)
|
||||
"$0" status >/dev/null && "$0" restart
|
||||
;;
|
||||
*)
|
||||
N=/etc/init.d/$NAME
|
||||
echo "Usage: $N {start|stop|restart|reload|force-reload|status}" >&2
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
||||
exit 0
|
11
startup/systemd/kopano-spamd.service
Normal file
11
startup/systemd/kopano-spamd.service
Normal file
@ -0,0 +1,11 @@
|
||||
[Unit]
|
||||
Description=Kopano Core Spam Daemon
|
||||
|
||||
[Service]
|
||||
Type=simple
|
||||
Environment=LC_ALL=C LANG=C
|
||||
ExecStart=/usr/bin/python /usr/sbin/kopano-spamd.py -F
|
||||
SuccessExitStatus=1
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
Loading…
Reference in New Issue
Block a user