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 2A2521382C5 for ; Mon, 26 Apr 2021 14:05:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E2997E0839; Mon, 26 Apr 2021 14:04:59 +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-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C83D4E0839 for ; Mon, 26 Apr 2021 14:04:59 +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 39628340E53 for ; Mon, 26 Apr 2021 14:04:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9403DC3 for ; Mon, 26 Apr 2021 14:04:56 +0000 (UTC) From: "Brian Evans" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Evans" Message-ID: <1619445893.3acbd9af265aac053a18b68ccb0e63ef65a01e4a.grknight@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: mail-filter/amavisd-milter/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: mail-filter/amavisd-milter/files/amavisd-milter.initd-r2 X-VCS-Directories: mail-filter/amavisd-milter/files/ X-VCS-Committer: grknight X-VCS-Committer-Name: Brian Evans X-VCS-Revision: 3acbd9af265aac053a18b68ccb0e63ef65a01e4a X-VCS-Branch: master Date: Mon, 26 Apr 2021 14:04:56 +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: f85a2a6b-3d49-464f-84f4-2dbdde9228b1 X-Archives-Hash: 70e0ef4cc82c1088b16ea64325d835fa commit: 3acbd9af265aac053a18b68ccb0e63ef65a01e4a Author: Brian Evans gentoo org> AuthorDate: Mon Apr 26 14:03:52 2021 +0000 Commit: Brian Evans gentoo org> CommitDate: Mon Apr 26 14:04:53 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3acbd9af mail-filter/amavisd-milter: Always return success in init script start_pre Signed-off-by: Brian Evans gentoo.org> mail-filter/amavisd-milter/files/amavisd-milter.initd-r2 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mail-filter/amavisd-milter/files/amavisd-milter.initd-r2 b/mail-filter/amavisd-milter/files/amavisd-milter.initd-r2 index 4acd7992258..bcd27759103 100644 --- a/mail-filter/amavisd-milter/files/amavisd-milter.initd-r2 +++ b/mail-filter/amavisd-milter/files/amavisd-milter.initd-r2 @@ -1,5 +1,5 @@ #!/sbin/openrc-run -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 name="amavisd-milter" @@ -15,4 +15,5 @@ depend() { start_pre() { # needed to avoid potential mi_stop errors [ "${RC_CMD}" = "restart" ] && sleep 4 + : }