diff options
author | Haakon Meland Eriksen <haakon.eriksen@far.no> | 2015-09-04 21:42:27 +0200 |
---|---|---|
committer | Haakon Meland Eriksen <haakon.eriksen@far.no> | 2015-09-04 21:42:27 +0200 |
commit | 2f73d24ab134391c3b3a69d5cbfede42e028b5ed (patch) | |
tree | 296a2a0d9e8e853e141f61600c718840fd8f290d /.openshift/cron/minutely | |
parent | 1a05696a84808a7877fe52846110da77ef245c47 (diff) | |
download | volse-hubzilla-2f73d24ab134391c3b3a69d5cbfede42e028b5ed.tar.gz volse-hubzilla-2f73d24ab134391c3b3a69d5cbfede42e028b5ed.tar.bz2 volse-hubzilla-2f73d24ab134391c3b3a69d5cbfede42e028b5ed.zip |
Removed old poller
Diffstat (limited to '.openshift/cron/minutely')
-rwxr-xr-x | .openshift/cron/minutely/poller | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/.openshift/cron/minutely/poller b/.openshift/cron/minutely/poller deleted file mode 100755 index e1ebdb751..000000000 --- a/.openshift/cron/minutely/poller +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/bash -if [ ! -f $OPENSHIFT_DATA_DIR/last_run ]; then - touch $OPENSHIFT_DATA_DIR/last_run -fi -if [[ $(find $OPENSHIFT_DATA_DIR/last_run -mmin +4) ]]; then #run every 5 mins - rm -f $OPENSHIFT_DATA_DIR/last_run - touch $OPENSHIFT_DATA_DIR/last_run - # The command(s) that you want to run every 5 minutes -cd /var/lib/openshift/55999305e0b8cd838f000053/app-root/repo; /opt/rh/php54/root/usr/bin/php include/poller.php -fi |