diff options
author | Suren A. Chilingaryan <csa@suren.me> | 2019-09-02 21:55:32 +0200 |
---|---|---|
committer | Suren A. Chilingaryan <csa@suren.me> | 2019-09-02 21:55:32 +0200 |
commit | 3bcab636b4addc4ca6e083334caf68b09e097690 (patch) | |
tree | 8d7b4ff95db443bd1194c187e8d655bf05089f99 /scripts/bootstrap/builder_sleep.sh | |
parent | 18789b5f0b1eb648ea8e8498bc7d0350f9f946c7 (diff) | |
download | gentoo-3bcab636b4addc4ca6e083334caf68b09e097690.tar.gz gentoo-3bcab636b4addc4ca6e083334caf68b09e097690.tar.bz2 gentoo-3bcab636b4addc4ca6e083334caf68b09e097690.tar.xz gentoo-3bcab636b4addc4ca6e083334caf68b09e097690.zip |
Switch to persistent container
Diffstat (limited to 'scripts/bootstrap/builder_sleep.sh')
-rw-r--r-- | scripts/bootstrap/builder_sleep.sh | 22 |
1 files changed, 22 insertions, 0 deletions
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 |