diff options
author | Michael Orlitzky <mjo@gentoo.org> | 2017-08-20 10:49:57 -0400 |
---|---|---|
committer | Michael Orlitzky <mjo@gentoo.org> | 2017-08-20 10:49:57 -0400 |
commit | db54891dc68ce65539310fefa703f82d5ce0bb2e (patch) | |
tree | ba30657f2994f767244a01d469e0513bb2066fcf /mail-filter | |
parent | profiles: mask the latest mail-filter/spamassassin revision for testing. (diff) | |
download | gentoo-db54891dc68ce65539310fefa703f82d5ce0bb2e.tar.gz gentoo-db54891dc68ce65539310fefa703f82d5ce0bb2e.tar.bz2 gentoo-db54891dc68ce65539310fefa703f82d5ce0bb2e.zip |
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
Diffstat (limited to 'mail-filter')
-rw-r--r-- | mail-filter/spamassassin/files/spamassassin.service-r2 | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/mail-filter/spamassassin/files/spamassassin.service-r2 b/mail-filter/spamassassin/files/spamassassin.service-r2 index ecb9ba392167..803205717846 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 |