/etc/init.d/imapproxy is in imapproxy 1.2.7-1build1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
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 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 | #! /bin/sh
# Initfile for imapproxy
#
### BEGIN INIT INFO
# Provides: imapproxy
# Required-Start: $syslog $network $local_fs $remote_fs
# Required-Stop: $syslog $local_fs $remote_fs
# Should-Start: $named
# Should-Stop:
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: IMAP proxy
# Description: Proxy IMAP connections to reduce the load on backend servers
#
### END INIT INFO
#
# based upon skeleton by Miquel van Smoorenburg <miquels@cistron.nl>.
# Modified for Debian GNU/Linux by Ian Murdock <imurdock@gnu.ai.mit.edu>.
#
# Version: @(#)skeleton 1.8 03-Mar-1998 miquels@cistron.nl
# Customized for UP-ImapProxy by Jose Luis Tallon <jltallon@adv-solutions.net>
PATH=/sbin:/bin:/usr/sbin:/usr/bin
DAEMON=/usr/sbin/imapproxyd
ARGS="-f /etc/imapproxy.conf"
NAME="imapproxy"
DESC="IMAP proxy"
PIDFILE="/var/run/$NAME.pid"
DEFAULT=/etc/default/$NAME
test -f $DAEMON || exit 0
# edit /etc/default/imapproxy to change this
START=yes
set -e
. /lib/lsb/init-functions
test -r ${DEFAULT} && . ${DEFAULT}
if [ "$START" = "no" -a "$1" != "stop" ]; then
log_warning_msg "Not starting imapproxy - disabled in ${DEFAULT}";
exit 0;
fi
case "$1" in
start)
if [ -f $PIDFILE ] && [ -e /proc/`cat $PIDFILE`/status ]; then
echo "Already started: $NAME."
exit 0
fi
echo -n "Starting $DESC: "
start-stop-daemon --start --quiet --pidfile=$PIDFILE \
--exec $DAEMON -- $ARGS
sleep 1
echo "$NAME."
;;
stop)
if [ ! -f $PIDFILE ]; then
echo "Not running: $NAME."
exit 0
fi
if [ ! -e /proc/`cat $PIDFILE`/status ]; then
rm -f $PIDFILE
echo "Not running: $NAME."
exit 0
fi
echo -n "Stopping $DESC: "
start-stop-daemon --oknodo --stop --quiet --pidfile=$PIDFILE \
--exec $DAEMON -- $ARGS 2>&1 | grep warning || true > /dev/null
rm -f $PIDFILE
echo "$NAME."
;;
restart|force-reload)
echo "Restarting $DESC: "
$0 stop
sleep 2 # not gratuituous
$0 start
;;
*)
N=/etc/init.d/$NAME
# echo "Usage: $N {start|stop|restart|reload|force-reload}" >&2
echo "Usage: $N {start|stop|restart|force-reload}" >&2
exit 1
;;
esac
exit 0
|