From c3f909bc2732dd64834bc698f116b4d5ad104739 Mon Sep 17 00:00:00 2001 From: Michael Mair-Keimberger Date: Sun, 27 May 2018 14:08:12 +0200 Subject: mail-filter/rspamd: remove unused patch Closes: https://github.com/gentoo/gentoo/pull/8614 --- mail-filter/rspamd/files/rspamd.init-r2 | 50 --------------------------------- 1 file changed, 50 deletions(-) delete mode 100644 mail-filter/rspamd/files/rspamd.init-r2 diff --git a/mail-filter/rspamd/files/rspamd.init-r2 b/mail-filter/rspamd/files/rspamd.init-r2 deleted file mode 100644 index bf6f9ca8bcfe..000000000000 --- a/mail-filter/rspamd/files/rspamd.init-r2 +++ /dev/null @@ -1,50 +0,0 @@ -#!/sbin/openrc-run -# Copyright 2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -extra_commands="checkconfig" -extra_started_commands="reload" - -RUNDIR=/var/run/rspamd -PIDFILE=$RUNDIR/rspamd.pid - -depend() { - need net -} - -checkconfig() { - /usr/bin/rspamadm configtest -c /etc/rspamd/rspamd.sysvinit.conf > /dev/null \ - || return 1 -} - -start() { - checkconfig || return 1 - ebegin "Starting ${SVCNAME}" - - mkdir -m0750 -p $RUNDIR - chown rspamd:rspamd $RUNDIR - chmod g+s $RUNDIR - rm -f $RUNDIR/$SVCNAME.sock - - start-stop-daemon --start --quiet --pidfile $PIDFILE -u rspamd -g rspamd \ - --exec /usr/bin/rspamd - eend $? -} - -stop() { - if [ "${RC_CMD}" = "restart" ] ; then - checkconfig || return 1 - fi - - ebegin "Stopping ${SVCNAME}" - start-stop-daemon --stop --quiet --retry=TERM/30/KILL/5 --pidfile $PIDFILE \ - --exec /usr/bin/rspamd - eend $? -} - -reload() { - checkconfig || return 1 - ebegin "Reloading ${SVCNAME}" - start-stop-daemon --stop --signal HUP --quiet --pidfile $PIDFILE - eend $? -} -- cgit v1.2.3-65-gdbad