From: Aleksander Mistewicz Date: Wed, 24 May 2017 09:18:58 +0000 (+0200) Subject: Move watchers to separate directory X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F37%2F130937%2F3;p=tools%2Ftestlab%2Fmajor.git Move watchers to separate directory Current split is: - watchers: programs executed by cron - jobs: programs executed by queue - scripts: programs executed by jobs Change-Id: I522684417cd94729a76cf38c22d318c91f63ae2f --- diff --git a/tsp/cronfile.example b/tsp/cronfile.example index 543e658..c32d775 100644 --- a/tsp/cronfile.example +++ b/tsp/cronfile.example @@ -1,5 +1,5 @@ -*/10 * * * * /opt/testlab-major/tsp/jobs/watcher.sh -0 */4 * * * /opt/testlab-major/tsp/jobs/watch_diskspace.sh -0 * * * * /opt/testlab-major/tsp/jobs/watch_sdb.sh -*/10 * * * * /opt/testlab-major/tsp/jobs/watch_usb.sh -0 */8 * * * /opt/testlab-major/tsp/jobs/watch_symlinks.sh +*/10 * * * * /opt/testlab-major/tsp/watchers/watcher.sh +0 */4 * * * /opt/testlab-major/tsp/watchers/watch_diskspace.sh +0 * * * * /opt/testlab-major/tsp/watchers/watch_sdb.sh +*/10 * * * * /opt/testlab-major/tsp/watchers/watch_usb.sh +0 */8 * * * /opt/testlab-major/tsp/watchers/watch_symlinks.sh diff --git a/tsp/jobs/watch_diskspace.sh b/tsp/watchers/watch_diskspace.sh similarity index 100% rename from tsp/jobs/watch_diskspace.sh rename to tsp/watchers/watch_diskspace.sh diff --git a/tsp/jobs/watch_sdb.sh b/tsp/watchers/watch_sdb.sh similarity index 100% rename from tsp/jobs/watch_sdb.sh rename to tsp/watchers/watch_sdb.sh diff --git a/tsp/jobs/watch_symlinks.sh b/tsp/watchers/watch_symlinks.sh similarity index 100% rename from tsp/jobs/watch_symlinks.sh rename to tsp/watchers/watch_symlinks.sh diff --git a/tsp/jobs/watch_usb.sh b/tsp/watchers/watch_usb.sh similarity index 100% rename from tsp/jobs/watch_usb.sh rename to tsp/watchers/watch_usb.sh diff --git a/tsp/jobs/watcher.sh b/tsp/watchers/watcher.sh similarity index 100% rename from tsp/jobs/watcher.sh rename to tsp/watchers/watcher.sh