aboutsummaryrefslogtreecommitdiffstats
path: root/main/openrc
diff options
context:
space:
mode:
authorAdrian Günter <adrian@gntr.me>2018-01-26 18:31:51 -0500
committerWilliam Pitcock <nenolod@dereferenced.org>2018-01-27 13:50:24 +0000
commitce73d3dd40b035538df006283f1030fd3fdd179c (patch)
tree84bd7f0adb6b3703990662f2439f13ddf0ceca9c /main/openrc
parent086595299761c604747f7ed0fc7ecabe6fc365b1 (diff)
downloadaports-ce73d3dd40b035538df006283f1030fd3fdd179c.tar.bz2
aports-ce73d3dd40b035538df006283f1030fd3fdd179c.tar.xz
main/busybox-initscripts: fix klogd startup klogd should rely on syslog, as syslog must already be running for klogd to properly utilize it
Diffstat (limited to 'main/openrc')
-rw-r--r--main/openrc/openrc.post-install4
1 files changed, 3 insertions, 1 deletions
diff --git a/main/openrc/openrc.post-install b/main/openrc/openrc.post-install
index 1057eed416..1c273502c1 100644
--- a/main/openrc/openrc.post-install
+++ b/main/openrc/openrc.post-install
@@ -26,7 +26,9 @@ for i in etc/rc[SL].d/*; do
# add the service to correct "runlevel"
case "$svc" in
- hwclock|modules|sysctl|hostname|keymaps|syslog|bootmisc)
+ syslog|klogd)
+ rc_update $svc sysinit;;
+ hwclock|modules|sysctl|hostname|keymaps|bootmisc)
rc_update $svc boot;;
*) rc_update $svc default;;
esac