]> git.ipfire.org Git - ipfire-2.x.git/blobdiff - src/wio/wio
wio: moved files from src/wio directory to standard IPFire location
[ipfire-2.x.git] / src / wio / wio
diff --git a/src/wio/wio b/src/wio/wio
deleted file mode 100644 (file)
index dea5e57..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/bin/bash
-#
-# Script to run wio helpers
-#
-. /var/ipfire/wio/wio.conf
-
-MINUTE=`date +%M`
-
-if [ $ENABLE == on ]; then
-
-       if [ $(($MINUTE%$CRON)) == 0 ]; then
-               /var/ipfire/wio/wio.pl > /dev/null
-       fi
-
-       if [ $OVPNRWMAIL == on ]; then
-               if [ $(($MINUTE%$OVPNCRON)) == 0 ]; then
-                       /var/ipfire/wio/wiovpn.pl > /dev/null
-               fi
-       else
-               rm -f /var/log/wio/.vpncache
-               rm -f /var/log/wio/.ovpncache
-       fi
-
-fi