From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 1D655138222 for ; Thu, 5 May 2016 22:17:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 595E721C039; Thu, 5 May 2016 22:17:08 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E3CFD21C039 for ; Thu, 5 May 2016 22:17:07 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 660B1340662 for ; Thu, 5 May 2016 22:17:05 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5207333A for ; Thu, 5 May 2016 22:17:03 +0000 (UTC) From: "William Hubbs" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "William Hubbs" Message-ID: <1462485759.92e2f2c7cc958effcec0ef773dda954a153d8e42.williamh@OpenRC> Subject: [gentoo-commits] proj/openrc:master commit in: init.d/ X-VCS-Repository: proj/openrc X-VCS-Files: init.d/killprocs.in X-VCS-Directories: init.d/ X-VCS-Committer: williamh X-VCS-Committer-Name: William Hubbs X-VCS-Revision: 92e2f2c7cc958effcec0ef773dda954a153d8e42 X-VCS-Branch: master Date: Thu, 5 May 2016 22:17:03 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 82afbcc8-835b-4d0d-a090-09435f8c5db7 X-Archives-Hash: dd3963a624a9a657370961984cd94099 commit: 92e2f2c7cc958effcec0ef773dda954a153d8e42 Author: William Hubbs gmail com> AuthorDate: Thu May 5 22:02:39 2016 +0000 Commit: William Hubbs gentoo org> CommitDate: Thu May 5 22:02:39 2016 +0000 URL: https://gitweb.gentoo.org/proj/openrc.git/commit/?id=92e2f2c7 killprocs: remove calls to sleep X-Gentoo-Bug: 487084 X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=487084 init.d/killprocs.in | 2 -- 1 file changed, 2 deletions(-) diff --git a/init.d/killprocs.in b/init.d/killprocs.in index 2f79a46..d1409c5 100644 --- a/init.d/killprocs.in +++ b/init.d/killprocs.in @@ -20,10 +20,8 @@ start() { ebegin "Terminating remaining processes" killall5 -15 ${killall5_opts} - sleep 1 eend 0 ebegin "Killing remaining processes" killall5 -9 ${killall5_opts} - sleep 1 eend 0 }