From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 391A6138334 for ; Wed, 22 May 2019 20:12:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1E070E0897; Wed, 22 May 2019 20:12:27 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 01AEAE0897 for ; Wed, 22 May 2019 20:12:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7190A344E46 for ; Wed, 22 May 2019 20:12:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D583A5EC for ; Wed, 22 May 2019 20:12:22 +0000 (UTC) From: "Fabian Groffen" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Fabian Groffen" Message-ID: <1558555900.d3b07d3e00912f859b692d196c5e579d018a051a.grobian@gentoo> Subject: [gentoo-commits] repo/proj/prefix:master commit in: scripts/auto-bootstraps/ X-VCS-Repository: repo/proj/prefix X-VCS-Files: scripts/auto-bootstraps/dobootstrap X-VCS-Directories: scripts/auto-bootstraps/ X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: d3b07d3e00912f859b692d196c5e579d018a051a X-VCS-Branch: master Date: Wed, 22 May 2019 20:12:22 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 40f867f7-aed3-4371-aaa5-32e8f4ba2ac7 X-Archives-Hash: 9436185b854b0fe6d791edc58b993bfe commit: d3b07d3e00912f859b692d196c5e579d018a051a Author: Fabian Groffen gentoo org> AuthorDate: Wed May 22 20:11:40 2019 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Wed May 22 20:11:40 2019 +0000 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=d3b07d3e scripts/auto-bootstraps/dobootstrap: apply more caffeine ensure we don't fall asleep while rsyncing the build results back to the server. Signed-off-by: Fabian Groffen gentoo.org> scripts/auto-bootstraps/dobootstrap | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/scripts/auto-bootstraps/dobootstrap b/scripts/auto-bootstraps/dobootstrap index de986e0169..5a37b5391d 100755 --- a/scripts/auto-bootstraps/dobootstrap +++ b/scripts/auto-bootstraps/dobootstrap @@ -128,9 +128,9 @@ do_prepare() { if [[ -n ${DOPUBLISH} ]] ; then echo $((endtime - starttime)) > elapsedtime - rsync -q /dev/null ${UPLOAD}/${HOSTNAME}-$$/ - rsync -q /dev/null ${UPLOAD}/${HOSTNAME}-$$/${chost}/ - rsync -rltv \ + ${keepalive} rsync -q /dev/null ${UPLOAD}/${HOSTNAME}-$$/ + ${keepalive} rsync -q /dev/null ${UPLOAD}/${HOSTNAME}-$$/${chost}/ + ${keepalive} rsync -rltv \ --exclude=work/ \ --exclude=homedir/ \ --exclude=files \ @@ -145,7 +145,8 @@ do_prepare() { var/log/emerge.log \ etc/portage/make.conf \ ${UPLOAD}/${HOSTNAME}-$$/${chost}/${dte}/ - rsync -q /dev/null ${UPLOAD}/${HOSTNAME}-$$/${chost}/${dte}/push-complete/ + ${keepalive} rsync -q /dev/null \ + ${UPLOAD}/${HOSTNAME}-$$/${chost}/${dte}/push-complete/ fi }