summaryrefslogtreecommitdiff
path: root/tsp/scripts
diff options
context:
space:
mode:
authorAleksander Mistewicz <a.mistewicz@samsung.com>2017-05-24 11:17:17 +0200
committerAleksander Mistewicz <a.mistewicz@samsung.com>2017-08-08 10:18:08 +0200
commitd33beececa0267da38b0a5a2d3818b1e5a896c4b (patch)
treed4300fff9d5e4c28eb5350542acfa369f90d237d /tsp/scripts
parenta9efeb206a35cbb57d31328de2792f697dfa38f9 (diff)
downloadmajor-d33beececa0267da38b0a5a2d3818b1e5a896c4b.tar.gz
major-d33beececa0267da38b0a5a2d3818b1e5a896c4b.tar.bz2
major-d33beececa0267da38b0a5a2d3818b1e5a896c4b.zip
Move free_diskspace to proper location
Change-Id: Icb342b57a4366b1ad23f89999c5fc1a9e47c9321
Diffstat (limited to 'tsp/scripts')
-rwxr-xr-xtsp/scripts/free_diskspace.sh38
1 files changed, 0 insertions, 38 deletions
diff --git a/tsp/scripts/free_diskspace.sh b/tsp/scripts/free_diskspace.sh
deleted file mode 100755
index efdcd1f..0000000
--- a/tsp/scripts/free_diskspace.sh
+++ /dev/null
@@ -1,38 +0,0 @@
-#!/bin/sh
-
-# Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-
-# 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.
-
-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)
-do
- for diff_file in $(find "$i" -type f -name diff.report)
- do
- if grep -q "Snapshot" "${diff_file}"
- then
- echo "Snapshot, skipping:" "$i"
- continue
- fi
- rm -vr "$i"
- break
- done
-done