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 39557139694 for ; Sun, 25 Jun 2017 06:50:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6F36021C04E; Sun, 25 Jun 2017 06:50:45 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 496E421C04E for ; Sun, 25 Jun 2017 06:50:45 +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 E88B433BE19 for ; Sun, 25 Jun 2017 06:50:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C4B787466 for ; Sun, 25 Jun 2017 06:50:41 +0000 (UTC) From: "Michael Palimaka" 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 Palimaka" Message-ID: <1498373433.9d31e149a7aaeab625fd9523b0a3d963278ae9a6.kensington@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-dns/dnscrypt-proxy/, net-dns/dnscrypt-proxy/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-dns/dnscrypt-proxy/dnscrypt-proxy-1.9.4-r1.ebuild net-dns/dnscrypt-proxy/dnscrypt-proxy-1.9.4.ebuild net-dns/dnscrypt-proxy/files/dnscrypt-proxy.service X-VCS-Directories: net-dns/dnscrypt-proxy/ net-dns/dnscrypt-proxy/files/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: 9d31e149a7aaeab625fd9523b0a3d963278ae9a6 X-VCS-Branch: master Date: Sun, 25 Jun 2017 06:50:41 +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-Archives-Salt: 46288b99-87c0-42fd-bc6c-24fc52e20b04 X-Archives-Hash: c80ddbcd4e7327db74236f12c45eafc7 commit: 9d31e149a7aaeab625fd9523b0a3d963278ae9a6 Author: Samantha McVey posteo net> AuthorDate: Sun Jun 25 06:46:03 2017 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Sun Jun 25 06:50:33 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d31e149 net-dns/dnscrypt-proxy: don't daemonize dnscrypt-proxy on systemd If dnscrypt-proxy is daemonized, journald cannot log any errors that occur. All systemd service files should *not* be daemonized. Gentoo-bug: 618784 .../{dnscrypt-proxy-1.9.4.ebuild => dnscrypt-proxy-1.9.4-r1.ebuild} | 0 net-dns/dnscrypt-proxy/files/dnscrypt-proxy.service | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/net-dns/dnscrypt-proxy/dnscrypt-proxy-1.9.4.ebuild b/net-dns/dnscrypt-proxy/dnscrypt-proxy-1.9.4-r1.ebuild similarity index 100% rename from net-dns/dnscrypt-proxy/dnscrypt-proxy-1.9.4.ebuild rename to net-dns/dnscrypt-proxy/dnscrypt-proxy-1.9.4-r1.ebuild diff --git a/net-dns/dnscrypt-proxy/files/dnscrypt-proxy.service b/net-dns/dnscrypt-proxy/files/dnscrypt-proxy.service index 1363ac8f8fc..4403254280a 100644 --- a/net-dns/dnscrypt-proxy/files/dnscrypt-proxy.service +++ b/net-dns/dnscrypt-proxy/files/dnscrypt-proxy.service @@ -6,7 +6,7 @@ Type=simple PIDFile=/var/run/dnscrypt-proxy.pid EnvironmentFile=/etc/conf.d/dnscrypt-proxy ExecStartPre=/bin/rm -f /var/run/dnscrypt-proxy.pid -ExecStart=/usr/sbin/dnscrypt-proxy --daemonize \ +ExecStart=/usr/sbin/dnscrypt-proxy \ --pidfile=/var/run/dnscrypt-proxy.pid \ --logfile=/var/log/dnscrypt-proxy.log \ --local-address=${DNSCRYPT_LOCALIP}:${DNSCRYPT_LOCALPORT} \