From 3bcab636b4addc4ca6e083334caf68b09e097690 Mon Sep 17 00:00:00 2001 From: "Suren A. Chilingaryan" Date: Mon, 2 Sep 2019 21:55:32 +0200 Subject: Switch to persistent container --- scripts/bootstrap/builder_sleep.sh | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 scripts/bootstrap/builder_sleep.sh (limited to 'scripts/bootstrap/builder_sleep.sh') diff --git a/scripts/bootstrap/builder_sleep.sh b/scripts/bootstrap/builder_sleep.sh new file mode 100644 index 0000000..a8f8a90 --- /dev/null +++ b/scripts/bootstrap/builder_sleep.sh @@ -0,0 +1,22 @@ +#! /bin/bash + +SLEEP_DURATION=0 +[ -n "$1" ] && SLEEP_DURATION=$(($1 * 86400)) +SLEEP_INTERVAL=${REACTION_TIME:-600} + +WAKE_FILE="/tmp/wake" +SYNC_FILE="/tmp/sync" + +rm -f "$WAKE_FILE" +rm -f "$SYNC_FILE" + +sum=0 +while [ 1 ]; do + sleep "$SLEEP_INTERVAL" + + sum=$(($sum + $SLEEP_INTERVAL)) + [ $SLEEP_DURATION -gt 0 -a $sum > $SLEEP_DURATION ] && break + [ -f "$WAKE_FILE" ] && break +done + +[ -f "$SYNC_FILE" ] && bash /etc/portage/scripts/bootstrap/builder_sync.sh -- cgit v1.2.3