summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-polipo/root/usr/sbin/polipo_purge
diff options
context:
space:
mode:
Diffstat (limited to 'applications/luci-polipo/root/usr/sbin/polipo_purge')
-rwxr-xr-xapplications/luci-polipo/root/usr/sbin/polipo_purge18
1 files changed, 0 insertions, 18 deletions
diff --git a/applications/luci-polipo/root/usr/sbin/polipo_purge b/applications/luci-polipo/root/usr/sbin/polipo_purge
deleted file mode 100755
index 23ba571927..0000000000
--- a/applications/luci-polipo/root/usr/sbin/polipo_purge
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/bin/sh
-
-DAEMON=/usr/sbin/polipo
-PIDFILE=`uci get polipo.daemon.pidFile`
-CFGFILE=/var/etc/polipo.conf
-
-[ -e "$PIDFILE" ] && {
- PID=`cat $PIDFILE`
-
- # send Polipo USR1 signal to write its in-memory cache to disk
- kill -USR1 $PID
- sleep 2
- # start polipo with -x flag to purge the on-disk cache
- polipo -c $CFGFILE -x
- # send Polipo USR2 signal to discard its in-memory cache
- kill -USR2 $PID
-}
-