From: Kevin Webb Date: Mon, 1 Feb 2010 22:42:35 +0000 (+0000) Subject: The logrotate script that came with ulogd assumed that killall was located in /bin... X-Git-Tag: DistributedRateLimiting-0.1-0~4 X-Git-Url: http://git.onelab.eu/?p=distributedratelimiting.git;a=commitdiff_plain;h=1e5f447c9fe1b7c9cdf675b3c595dcc57a12bc38;hp=8c47edadda66e99456909f5be103f6e8631f9087 The logrotate script that came with ulogd assumed that killall was located in /bin, which is not the case in PL slices. Fixed the location so that we actually send the correct signal to the ulogd process. --- diff --git a/ulogd.logrotate b/ulogd.logrotate index 2e8392d..13ecd2d 100644 --- a/ulogd.logrotate +++ b/ulogd.logrotate @@ -4,6 +4,6 @@ missingok sharedscripts postrotate - /bin/killall -HUP ulogd 2> /dev/null || true + /usr/bin/killall -HUP ulogd 2> /dev/null || true endscript }