summaryrefslogtreecommitdiff
path: root/tsp/jobs
diff options
context:
space:
mode:
authorAleksander Mistewicz <a.mistewicz@samsung.com>2017-09-19 11:11:44 +0200
committerAleksander Mistewicz <a.mistewicz@samsung.com>2017-09-27 18:58:34 +0200
commit922da6fc08194d13e7ca4d67ecda08f180688736 (patch)
treeb9a6d111424cd3eee6d1851266731b7ef376f964 /tsp/jobs
parent3b1340c04711e5cf4d5f10fd484bb8104c036083 (diff)
downloadmajor-922da6fc08194d13e7ca4d67ecda08f180688736.tar.gz
major-922da6fc08194d13e7ca4d67ecda08f180688736.tar.bz2
major-922da6fc08194d13e7ca4d67ecda08f180688736.zip
Adjust number of preserved prerelease images
Change-Id: I0447ebca5da49a625cfbe2c8b8eb83dcbb97629e
Diffstat (limited to 'tsp/jobs')
-rwxr-xr-xtsp/jobs/free_diskspace.sh9
1 files changed, 7 insertions, 2 deletions
diff --git a/tsp/jobs/free_diskspace.sh b/tsp/jobs/free_diskspace.sh
index efdcd1f..b7af05b 100755
--- a/tsp/jobs/free_diskspace.sh
+++ b/tsp/jobs/free_diskspace.sh
@@ -17,13 +17,18 @@
# Author: Aleksander Mistewicz <a.mistewicz@samsung.com>
# Assume that most of the space is taken up by downloaded images.
-# Delete ones that were modified at least 2 days ago.
+# Delete ones that were modified at least MTIME+1 days ago.
export TSP_DIR="$(CDPATH='' cd -- "$(dirname -- "$0")" && pwd -P)/.."
. "${TSP_DIR}/common.sh"
-for i in $(find "${WS_DOWNLOAD}" -maxdepth 1 -mindepth 1 -type d -mtime +1)
+MTIME="$1"
+
+# if argument is missing assign default value.
+test -n "$MTIME" || MTIME="6"
+
+for i in $(find "${WS_DOWNLOAD}" -maxdepth 1 -mindepth 1 -type d -mtime "+$MTIME")
do
for diff_file in $(find "$i" -type f -name diff.report)
do