diff options
author | Eray Aslan <eras@gentoo.org> | 2021-06-28 11:48:42 +0300 |
---|---|---|
committer | Eray Aslan <eras@gentoo.org> | 2021-06-28 11:49:06 +0300 |
commit | 0b2b21691bd747fbd4b11fa0663f833726bd89c4 (patch) | |
tree | df802cd2a7815de8bc8181c235b5c7b8901795f1 /mail-mta | |
parent | mail-mta/postfix: bump to 3.7_pre20210627 (diff) | |
download | gentoo-0b2b21691bd747fbd4b11fa0663f833726bd89c4.tar.gz gentoo-0b2b21691bd747fbd4b11fa0663f833726bd89c4.tar.bz2 gentoo-0b2b21691bd747fbd4b11fa0663f833726bd89c4.zip |
mail-mta/postfix: [QA] Fix missing eend arg
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Eray Aslan <eras@gentoo.org>
Diffstat (limited to 'mail-mta')
-rw-r--r-- | mail-mta/postfix/files/postfix.rc6.2.7 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mail-mta/postfix/files/postfix.rc6.2.7 b/mail-mta/postfix/files/postfix.rc6.2.7 index 9a1c1e21de9b..62f6dda38cf4 100644 --- a/mail-mta/postfix/files/postfix.rc6.2.7 +++ b/mail-mta/postfix/files/postfix.rc6.2.7 @@ -1,5 +1,5 @@ #!/sbin/openrc-run -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 extra_started_commands="reload abort flush" @@ -45,7 +45,7 @@ start() { stop() { ebegin "Stopping postfix ${CONF_MESSAGE}" /usr/sbin/postfix ${CONF_PARAM} stop >/dev/null 2>&1 - eend + eend $? } status() { |