From 1e5f447c9fe1b7c9cdf675b3c595dcc57a12bc38 Mon Sep 17 00:00:00 2001 From: Kevin Webb Date: Mon, 1 Feb 2010 22:42:35 +0000 Subject: [PATCH] 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. --- ulogd.logrotate | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 } -- 2.43.0