Disable syslogd and klogd

This commit is contained in:
kyak
2011-07-01 13:24:59 +04:00
parent 2bbcdc5621
commit be5d8eda3e
+3 -2
View File
@@ -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() {