diff options
author | Brian Evans <grknight@gentoo.org> | 2021-04-26 10:03:52 -0400 |
---|---|---|
committer | Brian Evans <grknight@gentoo.org> | 2021-04-26 10:04:53 -0400 |
commit | 3acbd9af265aac053a18b68ccb0e63ef65a01e4a (patch) | |
tree | e897c5e7bd81500a83492fadf1d84fd96e9931ba /mail-filter | |
parent | sci-geosciences/gpxsee: bump to 9.0 (diff) | |
download | gentoo-3acbd9af265aac053a18b68ccb0e63ef65a01e4a.tar.gz gentoo-3acbd9af265aac053a18b68ccb0e63ef65a01e4a.tar.bz2 gentoo-3acbd9af265aac053a18b68ccb0e63ef65a01e4a.zip |
mail-filter/amavisd-milter: Always return success in init script start_pre
Signed-off-by: Brian Evans <grknight@gentoo.org>
Diffstat (limited to 'mail-filter')
-rw-r--r-- | mail-filter/amavisd-milter/files/amavisd-milter.initd-r2 | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mail-filter/amavisd-milter/files/amavisd-milter.initd-r2 b/mail-filter/amavisd-milter/files/amavisd-milter.initd-r2 index 4acd7992258f..bcd27759103b 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 + : } |