From dcc7d75ed4cb81b573e87697d1e6177484aec275 Mon Sep 17 00:00:00 2001 From: kyak Date: Sun, 14 Nov 2010 13:42:12 +0300 Subject: [PATCH] Disable syslogd and klogd --- package/base-files/files/etc/init.d/boot | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/package/base-files/files/etc/init.d/boot b/package/base-files/files/etc/init.d/boot index 7927af154..cf8dbbe12 100755 --- a/package/base-files/files/etc/init.d/boot +++ b/package/base-files/files/etc/init.d/boot @@ -29,11 +29,12 @@ system_config() { if [ "$log_type" = "file" ]; then syslogd -s $log_size -O $log_file ${log_ip:+-L -R ${log_ip}:${log_port}} -S else - syslogd -C${log_size} ${log_ip:+-L -R ${log_ip}:${log_port}} + #syslogd -C${log_size} ${log_ip:+-L -R ${log_ip}:${log_port}} + true fi fi config_get klogconloglevel "$cfg" klogconloglevel - [ -x /sbin/klogd ] && klogd ${klogconloglevel:+-c $klogconloglevel} + #[ -x /sbin/klogd ] && klogd ${klogconloglevel:+-c $klogconloglevel} } apply_uci_config() {