aboutsummaryrefslogtreecommitdiffstats
path: root/main/busybox/acpid.logrotate
diff options
context:
space:
mode:
authorHenrik Riomar <henrik.riomar@gmail.com>2018-10-23 08:50:57 +0200
committerSören Tempel <soeren+git@soeren-tempel.net>2018-11-03 11:08:50 +0100
commit565a79f18d5e9b864e93c6ada625c7ea52ab2ff8 (patch)
tree9ec83741269b5b9c5be4e49739392f78ea5f4ba7 /main/busybox/acpid.logrotate
parentf9c73d2f386094dba804340e79475e56c9778c05 (diff)
downloadaports-565a79f18d5e9b864e93c6ada625c7ea52ab2ff8.tar.bz2
aports-565a79f18d5e9b864e93c6ada625c7ea52ab2ff8.tar.xz
main/busybox: don't write to stdout in logrotate script
Without this change a mail with the following body is sent on rotation: * Stopping busybox acpid ... [ ok ] * Starting busybox acpid ... [ ok ] The quiet flag seems to have been accidentally removed in commit 040774a6b048d76975702dc47d0fec40c192fc26 before that it was present.
Diffstat (limited to 'main/busybox/acpid.logrotate')
-rw-r--r--main/busybox/acpid.logrotate2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/busybox/acpid.logrotate b/main/busybox/acpid.logrotate
index a377635402..4cf5fdda97 100644
--- a/main/busybox/acpid.logrotate
+++ b/main/busybox/acpid.logrotate
@@ -3,6 +3,6 @@
notifempty
sharedscripts
postrotate
- /etc/init.d/acpid --ifstarted restart || true
+ /etc/init.d/acpid --quiet --ifstarted restart || true
endscript
}