diff options
author | Luka Perkov <luka@openwrt.org> | 2013-09-23 21:58:36 +0000 |
---|---|---|
committer | Luka Perkov <luka@openwrt.org> | 2013-09-23 21:58:36 +0000 |
commit | ef5f83620738c07f4e67042c80578882418aaf0c (patch) | |
tree | dfd6d01e5e58de422307acb593d86368db9b2da6 /package/system/procd | |
parent | 0b09a893406c33777b4cf552dc2f72730069f71d (diff) | |
download | upstream-ef5f83620738c07f4e67042c80578882418aaf0c.tar.gz upstream-ef5f83620738c07f4e67042c80578882418aaf0c.tar.bz2 upstream-ef5f83620738c07f4e67042c80578882418aaf0c.zip |
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 <luka@openwrt.org>
SVN-Revision: 38142
Diffstat (limited to 'package/system/procd')
-rw-r--r-- | package/system/procd/files/log.init | 7 |
1 files changed, 3 insertions, 4 deletions
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 } |