From ef5f83620738c07f4e67042c80578882418aaf0c Mon Sep 17 00:00:00 2001 From: Luka Perkov Date: Mon, 23 Sep 2013 21:58:36 +0000 Subject: fix various init scripts Changes include: * removing unused variables * replacing spaces with tabs where appropriate * more consistency with variable declarations Signed-off-by: Luka Perkov SVN-Revision: 38142 --- package/system/procd/files/log.init | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'package/system') diff --git a/package/system/procd/files/log.init b/package/system/procd/files/log.init index 14fbdf8c54..d0e3025714 100644 --- a/package/system/procd/files/log.init +++ b/package/system/procd/files/log.init @@ -6,7 +6,6 @@ START=21 STOP=89 USE_PROCD=1 -NAME=logread PROG=/sbin/logread start_service_file() @@ -15,13 +14,13 @@ start_service_file() local log_file log_size config_get log_file $1 log_file - config_get log_size $1 log_size + config_get log_size $1 log_size [ -z "${log_file}" ] && return procd_open_instance procd_set_param command "$PROG" -f -F "$log_file" -p "$pid_file" - [ -n "${log_size}" ] && procd_append_param command -S "$log_size" + [ -n "${log_size}" ] && procd_append_param command -S "$log_size" procd_close_instance } @@ -38,7 +37,7 @@ start_service_remote() procd_open_instance procd_set_param command "$PROG" -f -r "$log_ip" "${log_port:-514}" -p "$pid_file" - [ "${log_proto}" != "udp" ] || procd_append_param command -u + [ "${log_proto}" != "udp" ] || procd_append_param command -u procd_close_instance } -- cgit v1.2.3