diff options
author | Fabian Groffen <grobian@gentoo.org> | 2010-01-16 10:46:47 +0000 |
---|---|---|
committer | Fabian Groffen <grobian@gentoo.org> | 2010-01-16 10:46:47 +0000 |
commit | c7761119d794ac09b57c66538af502f8763693e5 (patch) | |
tree | cee7e39a0ccc32de0b917612607512c70233c677 /mail-mta | |
parent | Regenerate Manifest (diff) | |
download | gentoo-2-c7761119d794ac09b57c66538af502f8763693e5.tar.gz gentoo-2-c7761119d794ac09b57c66538af502f8763693e5.tar.bz2 gentoo-2-c7761119d794ac09b57c66538af502f8763693e5.zip |
Fix reload target of init script, thanks Dmitry A. Bakshaev in bug #301089. Not bumping since the issue is not critical and only causing a wrong return code of the reload target.
(Portage version: 2.2.00.15200-prefix/cvs/Darwin powerpc)
Diffstat (limited to 'mail-mta')
-rw-r--r-- | mail-mta/exim/ChangeLog | 9 | ||||
-rw-r--r-- | mail-mta/exim/files/exim.rc6 | 8 |
2 files changed, 11 insertions, 6 deletions
diff --git a/mail-mta/exim/ChangeLog b/mail-mta/exim/ChangeLog index e60e22d720ae..55518e0d6dc7 100644 --- a/mail-mta/exim/ChangeLog +++ b/mail-mta/exim/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for mail-mta/exim -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/mail-mta/exim/ChangeLog,v 1.155 2009/12/04 19:04:51 grobian Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/mail-mta/exim/ChangeLog,v 1.156 2010/01/16 10:46:46 grobian Exp $ + + 16 Jan 2010; Fabian Groffen <grobian@gentoo.org> files/exim.rc6: + Fix reload target of init script, thanks Dmitry A. Bakshaev in bug + #301089. Not bumping since the issue is not critical and only causing a + wrong return code of the reload target. 04 Dec 2009; Fabian Groffen <grobian@gentoo.org> exim-4.71.ebuild, metadata.xml: diff --git a/mail-mta/exim/files/exim.rc6 b/mail-mta/exim/files/exim.rc6 index 13b1d66f2da7..3c0ed055e6c6 100644 --- a/mail-mta/exim/files/exim.rc6 +++ b/mail-mta/exim/files/exim.rc6 @@ -1,7 +1,7 @@ #!/sbin/runscript # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/mail-mta/exim/files/exim.rc6,v 1.7 2007/05/03 19:57:50 peitolm Exp $ +# $Header: /var/cvsroot/gentoo-x86/mail-mta/exim/files/exim.rc6,v 1.8 2010/01/16 10:46:47 grobian Exp $ opts="${opts} reload" depend() { @@ -23,7 +23,7 @@ stop() { } reload() { - ebegin "Reloading exim" - start-stop-daemon --stop --signal 1 --quiet --pidfile /var/run/exim.pid --name exim - eend $? + ebegin "Reloading exim" + start-stop-daemon --stop --signal HUP --oknodo --quiet --pidfile /var/run/exim.pid --name exim + eend $? } |