754341460b
By default, exim stores its PID file in /var/spool/exim, and its log file in /var/spool/exim/log, but it makes a lot more sense to have the logs in /var/log/exim and the PID file in /var/run/exim. Using binary name subdirectory in both cases allows for the use of systemd's LogsDirectory and RuntimeDirectory statements Signed-off-by: Pascal de Bruijn <p.debruijn@unilogic.nl> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
35 lines
532 B
Bash
35 lines
532 B
Bash
#!/bin/sh
|
|
#
|
|
# Start/stop exim
|
|
#
|
|
|
|
PIDFILE=/var/run/exim/exim.pid
|
|
|
|
case "$1" in
|
|
start)
|
|
echo "Starting exim..."
|
|
if [ ! -d /var/log/exim ]; then
|
|
mkdir -p /var/log/exim
|
|
chown exim:mail /var/log/exim
|
|
fi
|
|
if [ ! -d /var/run/exim ]; then
|
|
mkdir -p /var/run/exim
|
|
chown root:mail /var/run/exim
|
|
fi
|
|
start-stop-daemon -S -x exim -- -bd
|
|
;;
|
|
stop)
|
|
printf "Stopping exim..."
|
|
start-stop-daemon -K -o -p $PIDFILE
|
|
;;
|
|
restart|reload)
|
|
"$0" stop
|
|
"$0" start
|
|
;;
|
|
*)
|
|
echo "Usage: $0 {start|stop|restart}"
|
|
exit 1
|
|
esac
|
|
|
|
exit $?
|