security/logcheck: Fix misupdate of patch-debian_logcheck.cron.d
With commit d14b5cc7f0ce patch-debian_logcheck.cron.d is incorrectly updated with 2 points. 1. It introduces syntex error of crontab and results in cron job error. 2. Change coresponding to commit 4d161fff0334 is lost. Fixes: d14b5cc7f0ce security/logcheck: Update to 1.4.4
This commit is contained in:
parent
f0106cf981
commit
2b01b9af87
@ -1,5 +1,6 @@
|
||||
PORTNAME= logcheck
|
||||
DISTVERSION= 1.4.4
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= security
|
||||
MASTER_SITES= DEBIAN_POOL
|
||||
DISTNAME= ${PORTNAME}_${PORTVERSION}
|
||||
|
||||
@ -10,5 +10,5 @@
|
||||
|
||||
-@reboot logcheck if [ ! -d /run/systemd/system ] && [ -x /usr/sbin/logcheck ]; then nice -n10 /usr/sbin/logcheck -R; fi
|
||||
-2 * * * * logcheck if [ ! -d /run/systemd/system ] && [ -x /usr/sbin/logcheck ]; then nice -n10 /usr/sbin/logcheck; fi
|
||||
+@reboot logcheck if [ ! -d /run/systemd/system ] && [ -x %%PREFIX%%/sbin/logcheck ]; then nice -n10 %%PREFIX%%/sbin/logcheck -R; fi
|
||||
+2 * * * * logcheck if [ ! -d /run/systemd/system ] && [ -x %%PREFIX%%/sbin/logcheck ]; then nice -n10 %%PREFIX%%/sbin/logcheck; fi
|
||||
+@reboot if [ ! -d /run/systemd/system ] && [ -x %%PREFIX%%/sbin/logcheck ]; then /usr/bin/lockf -t 0 /tmp/.logcheck nice -n10 %%PREFIX%%/sbin/logcheck -R; fi
|
||||
+2 * * * * if [ ! -d /run/systemd/system ] && [ -x %%PREFIX%%/sbin/logcheck ]; then /usr/bin/lockf -t 0 /tmp/.logcheck nice -n10 %%PREFIX%%/sbin/logcheck; fi
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user