add sleep to try and give processes a chance to die. bug 119940
authorEric Edgar <rocket@gentoo.org>
Wed, 1 Feb 2006 21:14:12 +0000 (21:14 +0000)
committerEric Edgar <rocket@gentoo.org>
Wed, 1 Feb 2006 21:14:12 +0000 (21:14 +0000)
git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/catalyst/trunk@1061 d1e1f19c-881f-0410-ab34-b69fee027534

ChangeLog
targets/support/kill-chroot-pids.sh

index eff8288d359059a5e630e16868e826d549f28e32..03ae31c5f8e6ec717e6f92d8984dd6e788524c23 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 # Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo/src/catalyst/ChangeLog,v 1.546 2006/02/01 21:09:50 wolf31o2 Exp $
+# $Header: /var/cvsroot/gentoo/src/catalyst/ChangeLog,v 1.547 2006/02/01 21:14:11 rocket Exp $
+
+  01 Feb 2006; Eric Edgar <rocket@gentoo.org>
+  targets/support/kill-chroot-pids.sh:
+  add sleep to try and give processes a chance to die. bug 119940
 
   01 Feb 2006; Chris Gianelloni <wolf31o2@gentoo.org>
   targets/support/functions.sh:
index 3418e080d57fb45c9a551bcfc1acd0baecfc2955..9e8bf01d6f335e365569c23a6d6a53a11974ea21 100755 (executable)
@@ -55,4 +55,8 @@ then
        do
                kill -9 ${pid}
        done
+
+       # Small sleep here to give the process(es) a chance to die before running unbind again.
+       sleep 5
+
 fi