From: Michael Tremer Date: Wed, 29 Nov 2017 11:42:17 +0000 (+0000) Subject: Keep nightly builds for up to 10 days X-Git-Url: http://git.ipfire.org/?p=people%2Fms%2Fnightly-builds.git;a=commitdiff_plain;h=ad536b250ff99d807e98388030cc8cc39c529b9f Keep nightly builds for up to 10 days Signed-off-by: Michael Tremer --- diff --git a/server-scripts/ipfire-cleanup-nightly-builds.sh b/server-scripts/ipfire-cleanup-nightly-builds.sh index 3b8b8bc..433945e 100755 --- a/server-scripts/ipfire-cleanup-nightly-builds.sh +++ b/server-scripts/ipfire-cleanup-nightly-builds.sh @@ -5,7 +5,7 @@ declare -A ARCHES ARCHES["master"]="x86_64 i586" ARCHES["next"]="x86_64 i586 armv5tel" -MAX_AGE=$(( 7 * 24 * 3600 )) # 7 days +MAX_AGE=$(( 10 * 24 * 3600 )) # 10 days NOW="$(date +"%s")"