summaryrefslogtreecommitdiff
path: root/staging/squid/squid.cron
blob: c78e511053fdb90eda2249075597bd946d9cc401 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh

# exit without error if no pidfile exists
{ read pid </run/squid.pid; } 2>/dev/null || exit 0

# make sure found PID really is a squid process
if [ /proc/$pid/exec -ef /usr/sbin/squid ]; then
  /usr/sbin/squid -k rotate
fi