On Thu, Jul 29, 2010 at 09:05:30AM -0500, Jonathan Black wrote:

>         postrotate
>                 test ! -e /var/run/squid3.pid || /usr/sbin/squid3 -k rotate
>         endscript

The problem is probably that exclamation mark. If your /bin/sh is bash
it probably will not like it, as it's also used for history expansion.

It might be better as:

 [ -f /var/run/squid3.pid ] && /usr/sbin/squid3 -k rotate

-- 
Paul Martin <p...@debian.org>



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org

Reply via email to