From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 009A8138336 for ; Mon, 21 Jan 2019 22:51:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D39A7E0BDA; Mon, 21 Jan 2019 22:51:44 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A37CAE0BD9 for ; Mon, 21 Jan 2019 22:51:44 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 841DB335D47 for ; Mon, 21 Jan 2019 22:51:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 60D58524 for ; Mon, 21 Jan 2019 22:51:40 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1548111038.c8dbdb1e60b3d6ce7a8e70e7092cff4af99b1ee6.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: mail-filter/spamassassin/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: mail-filter/spamassassin/files/3.4.1-spamd.init-r2 X-VCS-Directories: mail-filter/spamassassin/files/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: c8dbdb1e60b3d6ce7a8e70e7092cff4af99b1ee6 X-VCS-Branch: master Date: Mon, 21 Jan 2019 22:51:40 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 98f4e5a1-fe63-4fc7-800e-70a7aca953b4 X-Archives-Hash: 083a67654f4550ddeca1b12be6fda2ba commit: c8dbdb1e60b3d6ce7a8e70e7092cff4af99b1ee6 Author: Michael Mair-Keimberger gmail com> AuthorDate: Sun Jan 13 14:03:12 2019 +0000 Commit: Patrice Clement gentoo org> CommitDate: Mon Jan 21 22:50:38 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8dbdb1e mail-filter/spamassassin: remove unused file. Signed-off-by: Michael Mair-Keimberger gmail.com> Closes: https://github.com/gentoo/gentoo/pull/10822 Signed-off-by: Patrice Clement gentoo.org> mail-filter/spamassassin/files/3.4.1-spamd.init-r2 | 38 ---------------------- 1 file changed, 38 deletions(-) diff --git a/mail-filter/spamassassin/files/3.4.1-spamd.init-r2 b/mail-filter/spamassassin/files/3.4.1-spamd.init-r2 deleted file mode 100644 index c704782f3a4..00000000000 --- a/mail-filter/spamassassin/files/3.4.1-spamd.init-r2 +++ /dev/null @@ -1,38 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -command="/usr/sbin/spamd" -pidfile="/run/spamd.pid" -command_args="--pidfile=${pidfile} ${SPAMD_OPTS}" -command_args_background="--daemonize" - -if ! [ "${SPAMD_RUN_AS_ROOT}" = "true" ]; then - # Passing --username=root to spamd kills it, so if SPAMD_RUN_AS_ROOT - # is true, then we want to pass no user/group command args at all. - # Any value other than "true" gets the default user/group of "spamd". - command_args="${command_args} --username=spamd --groupname=spamd" -fi - -: ${SPAMD_NICELEVEL:=0} -start_stop_daemon_args="--nicelevel ${SPAMD_NICELEVEL}" - -# Retry after SPAMD_TIMEOUT seconds because spamd can take a -# while to kill off all of its children. This was bug 322025. -: ${SPAMD_TIMEOUT:=15} -retry="${SPAMD_TIMEOUT}" - -extra_started_commands="reload" - -depend() { - before mta - use logger mysql postgres -} - -reload() { - ebegin "Reloading configuration" - # Warning: reload causes the PID of the spamd process to - # change, but spamd does update its PID file afterwards. - start-stop-daemon --signal HUP --pidfile "${pidfile}" - eend $? -}