summaryrefslogtreecommitdiff
path: root/staging/squid/squid.cron
diff options
context:
space:
mode:
Diffstat (limited to 'staging/squid/squid.cron')
-rw-r--r--staging/squid/squid.cron9
1 files changed, 0 insertions, 9 deletions
diff --git a/staging/squid/squid.cron b/staging/squid/squid.cron
deleted file mode 100644
index c78e51105..000000000
--- a/staging/squid/squid.cron
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/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