From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-968148-garchives=archives.gentoo.org@lists.gentoo.org>
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 EB75E1396D0
	for <garchives@archives.gentoo.org>; Sun, 20 Aug 2017 14:50:22 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 4059C1FC006;
	Sun, 20 Aug 2017 14:50:22 +0000 (UTC)
Received: from smtp.gentoo.org (smtp.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 1CCC41FC006
	for <gentoo-commits@lists.gentoo.org>; Sun, 20 Aug 2017 14:50:22 +0000 (UTC)
Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84])
	(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 E638F341745
	for <gentoo-commits@lists.gentoo.org>; Sun, 20 Aug 2017 14:50:20 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 77E307C6F
	for <gentoo-commits@lists.gentoo.org>; Sun, 20 Aug 2017 14:50:19 +0000 (UTC)
From: "Michael Orlitzky" <mjo@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Michael Orlitzky" <mjo@gentoo.org>
Message-ID: <1503240597.db54891dc68ce65539310fefa703f82d5ce0bb2e.mjo@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/spamassassin.service-r2
X-VCS-Directories: mail-filter/spamassassin/files/
X-VCS-Committer: mjo
X-VCS-Committer-Name: Michael Orlitzky
X-VCS-Revision: db54891dc68ce65539310fefa703f82d5ce0bb2e
X-VCS-Branch: master
Date: Sun, 20 Aug 2017 14:50:19 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Archives-Salt: 35726e6f-ab55-4a95-aa24-7d15c8cac894
X-Archives-Hash: ecbe537c81f72d94da7f0ebc404eb999

commit:     db54891dc68ce65539310fefa703f82d5ce0bb2e
Author:     Michael Orlitzky <mjo <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 20 14:49:57 2017 +0000
Commit:     Michael Orlitzky <mjo <AT> gentoo <DOT> org>
CommitDate: Sun Aug 20 14:49:57 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db54891d

mail-filter/spamassassin: remove redundant systemd service file lines.

This commit drops the StandardOutput=syslog and StandardError=syslog
lines from the new systemd service file. The defaults for those two
options are now "journal" which will eventually hit syslog anyway if
the user so desires. Consequently, we drop After=syslog.target too.

Thanks to grawity on Freenode for the tip.

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 mail-filter/spamassassin/files/spamassassin.service-r2 | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/mail-filter/spamassassin/files/spamassassin.service-r2 b/mail-filter/spamassassin/files/spamassassin.service-r2
index ecb9ba39216..80320571784 100644
--- a/mail-filter/spamassassin/files/spamassassin.service-r2
+++ b/mail-filter/spamassassin/files/spamassassin.service-r2
@@ -1,14 +1,12 @@
 [Unit]
 Description=Spamassassin daemon
-After=syslog.target network.target
+After=network.target
 
 [Service]
 ExecStart=/usr/sbin/spamd $SPAMD_OPTS
 ExecReload=/bin/kill -HUP $MAINPID
 User=spamd
 Group=spamd
-StandardOutput=syslog
-StandardError=syslog
 
 [Install]
 WantedBy=multi-user.target