Removed old poller

This commit is contained in:
Haakon Meland Eriksen 2015-09-04 21:42:27 +02:00
parent 1a05696a84
commit 2f73d24ab1

View File

@ -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