aboutsummaryrefslogtreecommitdiffstats
path: root/main/busybox
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
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')
-rw-r--r--main/busybox/APKBUILD4
-rw-r--r--main/busybox/acpid.logrotate2
2 files changed, 3 insertions, 3 deletions
diff --git a/main/busybox/APKBUILD b/main/busybox/APKBUILD
index 9a68a2be74..c9ef9ef762 100644
--- a/main/busybox/APKBUILD
+++ b/main/busybox/APKBUILD
@@ -3,7 +3,7 @@
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=busybox
pkgver=1.29.3
-pkgrel=0
+pkgrel=1
pkgdesc="Size optimized toolbox of many common UNIX utilities"
url=http://busybox.net
arch="all"
@@ -208,7 +208,7 @@ f96d66ce5a0295a2459a2c49c281b64e016de675ebd31a49af18cb06f3498fe27dfbc8667324b439
025ad19f4e0cd299f11eba4a0c852c166fc91787756838f9c755405dad924fd1fe3c08067b938e14f9d8c609881d2ce5915152810e855eaa5ca510a76650069e 0012-udhcpc-Don-t-background-if-n-is-given.patch
d8926f0e4ed7d2fe5af89ff2a944d781b45b109c9edf1ef2591e7bce2a8bbadd7c8ca814cb3c928ae09027d9603434fe70496f308d701f3d42260ebd1e9e9b29 0013-testsuite-fix-cpio-tests.patch
8cb91903f2be3620b5500a4e8f4190537c93601282510b82303c3b516141b36ab872aeff5a7f5ae00f270439abab862ceabda531bdf180643da165b2f3b35d9f 0014-miscutils-microcom-Fixed-segfault.patch
-a9b1403c844c51934637215307dd9e2adb9458921047acff0d86dcf229b6e0027f4b2c6cdaa25a58407aad9d098fb5685d58eb5ff8d2aa3de4912cdea21fe54c acpid.logrotate
+aa93095e20de88730f526c6f463cef711b290b9582cdbd8c1ba2bd290019150cbeaa7007c2e15f0362d5b9315dd63f60511878f0ea05e893f4fdfb4a54af3fb1 acpid.logrotate
8fc1b81f39cb73430ebc9bca8706a71ae82b51efd2fee8ac15b4abe9b0899239075a46234cb7eae58f906c7499d1f75d11b29bcb9ca8dada8b34822df0948e73 busyboxconfig
1dc5c94708fc4d4129015c0cdd64fbe0edd2794bb10422ac2686db8a4ef06182d306ec89560d0310190c1ed86b8422c13594d2cc2b9281c8895145d5a233cc0c busyboxconfig-extras
0becc2186d6c32fb0c401cf7bc0e46268b38ce8892db33be1daf40273024c1c02d518283f44086a313a2ccef34230a1d945ec148cc173f26e6aa9d88a7426e54 bbsuid.c
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
}