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