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 | |
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')
4 files changed, 0 insertions, 65 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 -} - diff --git a/applications/luci-app-polipo/root/usr/share/luci/menu.d/luci-app-polipo.json b/applications/luci-app-polipo/root/usr/share/luci/menu.d/luci-app-polipo.json deleted file mode 100644 index 9779bc0e61..0000000000 --- a/applications/luci-app-polipo/root/usr/share/luci/menu.d/luci-app-polipo.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "admin/services/polipo": { - "title": "Polipo", - "action": { - "type": "alias", - "path": "admin/services/polipo/config" - }, - "depends": { - "acl": [ "luci-app-polipo" ], - "uci": { "polipo": true } - } - }, - - "admin/services/polipo/status": { - "title": "Status", - "order": 1, - "action": { - "type": "template", - "path": "polipo_status" - } - }, - - "admin/services/polipo/config": { - "title": "Configuration", - "order": 2, - "action": { - "type": "cbi", - "path": "polipo", - "post": { "cbi.submit": true } - } - } -} diff --git a/applications/luci-app-polipo/root/usr/share/rpcd/acl.d/luci-app-polipo.json b/applications/luci-app-polipo/root/usr/share/rpcd/acl.d/luci-app-polipo.json deleted file mode 100644 index 5b9dfa88fa..0000000000 --- a/applications/luci-app-polipo/root/usr/share/rpcd/acl.d/luci-app-polipo.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "luci-app-polipo": { - "description": "Grant UCI access for luci-app-polipo", - "read": { - "uci": [ "polipo" ] - }, - "write": { - "uci": [ "polipo" ] - } - } -} diff --git a/applications/luci-app-polipo/root/usr/share/ucitrack/luci-app-polipo.json b/applications/luci-app-polipo/root/usr/share/ucitrack/luci-app-polipo.json deleted file mode 100644 index a68a368034..0000000000 --- a/applications/luci-app-polipo/root/usr/share/ucitrack/luci-app-polipo.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "config": "polipo", - "init": "polipo" -} |