Skip to content
Snippets Groups Projects
Commit 32731a72 authored by Jo-Philipp Wich's avatar Jo-Philipp Wich
Browse files

base-files: pass conloglevel to syslogd (#9463, #9647)

SVN-Revision: 27400
parent 6e7b8022
No related branches found
No related tags found
No related merge requests found
......@@ -27,9 +27,13 @@ system_config() {
config_get log_type "$cfg" log_type circular
config_get log_file "$cfg" log_file "/var/log/messages"
if [ "$log_type" = "file" ]; then
syslogd -s $log_size -O $log_file ${log_ip:+-L -R ${log_ip}:${log_port}} -S
syslogd -s $log_size -O $log_file \
${log_ip:+-L -R ${log_ip}:${log_port}} \
${conloglevel:+-l $conloglevel} -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}} \
${conloglevel:+-l $conloglevel}
fi
fi
config_get klogconloglevel "$cfg" klogconloglevel
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment