diff options
author | Grant Goodyear <g2boojum@gentoo.org> | 2002-06-12 19:22:12 +0000 |
---|---|---|
committer | Grant Goodyear <g2boojum@gentoo.org> | 2002-06-12 19:22:12 +0000 |
commit | 90cd0ed311eb91574007a51d50bf3aaafd31f7b7 (patch) | |
tree | a1750643f025bdc0bf090fb5174ce1b45bfd1c20 /net-mail | |
parent | Updated (diff) | |
download | gentoo-2-90cd0ed311eb91574007a51d50bf3aaafd31f7b7.tar.gz gentoo-2-90cd0ed311eb91574007a51d50bf3aaafd31f7b7.tar.bz2 gentoo-2-90cd0ed311eb91574007a51d50bf3aaafd31f7b7.zip |
Whoops. very minor fixo
Diffstat (limited to 'net-mail')
-rw-r--r-- | net-mail/sendmail/files/sendmail | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net-mail/sendmail/files/sendmail b/net-mail/sendmail/files/sendmail index 78ebe3933999..731bbecf27e1 100644 --- a/net-mail/sendmail/files/sendmail +++ b/net-mail/sendmail/files/sendmail @@ -1,7 +1,7 @@ #!/sbin/runscript # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/net-mail/sendmail/files/sendmail,v 1.1 2002/06/12 19:15:55 g2boojum Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/sendmail/files/sendmail,v 1.2 2002/06/12 19:22:12 g2boojum Exp $ . /etc/conf.d/sendmail @@ -18,6 +18,6 @@ start() { stop() { ebegin "Stopping sendmail" - kill `sed -n -e '1p' /var/run/sendmail.pid` + kill `sed -n -e '1p' ${PIDFILE}` eend $? } |