diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-09-14 13:20:18 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-09-14 13:20:18 +0200 |
commit | d24e39270fce7113b43f53622f359bff10989aa1 (patch) | |
tree | 4da5611dd040c05a254585dc4c7db7b868e65d72 | |
parent | 3261662392605025031857a2cecabb0b2b4c98b7 (diff) | |
download | jenkins.debian.net-d24e39270fce7113b43f53622f359bff10989aa1.tar.xz |
reproducible: try longer to cleanup schroot sessions
-rwxr-xr-x | bin/schroot-create.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/schroot-create.sh b/bin/schroot-create.sh index 20e5f3ab..31d1bed0 100755 --- a/bin/schroot-create.sh +++ b/bin/schroot-create.sh @@ -184,13 +184,13 @@ bootstrap() { cleanup_schroot_sessions() { # FIXME: if this works well, move to _common.sh and use the same function from _maintenance.sh local RESULT="" - for loop in $(seq 0 9) ; do + for loop in $(seq 0 19) ; do ps fax|grep -v grep |grep schroot || for i in $(schroot --all-sessions -l ) ; do ps fax|grep -v grep |grep schroot || schroot -e -c $i ; done RESULT=$(schroot --all-sessions -l) if [ -z "$RESULT" ] ; then break fi - sleep 5 + sleep 15 done } |