summaryrefslogtreecommitdiff
blob: 2bda2cc0f1a0a6928738057f834e98edbedb8ead (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh

if /etc/init.d/polipo --quiet status; then
	#Expire old cached objects
	kill -USR1 $(cat /var/run/polipo.pid)
	sleep 1
	nice -n 15 su -s "/bin/sh" -c "polipo -x" polipo > /dev/null
	kill -USR2 $(cat /var/run/polipo.pid)
fi