diff options
author | Yanase Yuki <dev@zpc.st> | 2024-09-10 18:16:32 +0900 |
---|---|---|
committer | Hannu Nyman <hannu.nyman@iki.fi> | 2024-09-11 16:27:26 +0300 |
commit | f19649b7beaed73c3567e3371a51553cb098ab40 (patch) | |
tree | b745c1a0e03a751941d323244a31155dceac241c /applications/luci-app-polipo/root/usr/sbin | |
parent | 80ac1e43650df3c1faf74c622d82d9a7b7a958aa (diff) |
luci-app-polipo: remove package
Polipo is no longer maintained by upstream
See https://www.irif.fr/~jch/software/polipo/
Signed-off-by: Yanase Yuki <dev@zpc.st>
Diffstat (limited to 'applications/luci-app-polipo/root/usr/sbin')
-rwxr-xr-x | applications/luci-app-polipo/root/usr/sbin/polipo_purge | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/applications/luci-app-polipo/root/usr/sbin/polipo_purge b/applications/luci-app-polipo/root/usr/sbin/polipo_purge deleted file mode 100755 index 23ba571927..0000000000 --- a/applications/luci-app-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 -} - |