diff options
author | Mike Frysinger <vapier@gentoo.org> | 2002-11-23 21:29:26 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2002-11-23 21:29:26 +0000 |
commit | 2b4d6fc0e2c05ff30ea5c5323f1427438a131521 (patch) | |
tree | 3ed61b06bafb1332f2c46e4cae90f45a675f6b54 /sys-apps/xinetd | |
parent | initial ebuild #10999 (diff) | |
download | gentoo-2-2b4d6fc0e2c05ff30ea5c5323f1427438a131521.tar.gz gentoo-2-2b4d6fc0e2c05ff30ea5c5323f1427438a131521.tar.bz2 gentoo-2-2b4d6fc0e2c05ff30ea5c5323f1427438a131521.zip |
small fix for #11050
Diffstat (limited to 'sys-apps/xinetd')
-rw-r--r-- | sys-apps/xinetd/files/2.3.9/xinetd.rc6 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys-apps/xinetd/files/2.3.9/xinetd.rc6 b/sys-apps/xinetd/files/2.3.9/xinetd.rc6 index d9627103def1..e5960ec2f917 100644 --- a/sys-apps/xinetd/files/2.3.9/xinetd.rc6 +++ b/sys-apps/xinetd/files/2.3.9/xinetd.rc6 @@ -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/sys-apps/xinetd/files/2.3.9/xinetd.rc6,v 1.1 2002/10/24 15:03:54 aliz Exp $ +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/xinetd/files/2.3.9/xinetd.rc6,v 1.2 2002/11/23 21:29:26 vapier Exp $ opts="start stop reload restart dump check" @@ -36,6 +36,6 @@ dump(){ check(){ ebegin "Performing Consistency Check" - /bin/kill -s IOT xinetd &>/dev/null + killall -IOT xinetd &>/dev/null eend $? } |