procd: convert various packages to procd style init.d scripts
[openwrt/staging/dedeckeh.git] / package / system / procd / files / log.init
index 4a878fed99dba868c2f888684f4cf96d94bcde13..14fbdf8c5493f969b62b96d28b3c8e1dd99b28bf 100644 (file)
@@ -8,7 +8,6 @@ STOP=89
 USE_PROCD=1
 NAME=logread
 PROG=/sbin/logread
-PIDCOUNT=1
 
 start_service_file()
 {
@@ -24,8 +23,6 @@ start_service_file()
        procd_set_param command "$PROG" -f -F "$log_file" -p "$pid_file"
         [ -n "${log_size}" ] && procd_append_param command -S "$log_size"
        procd_close_instance
-
-       PIDCOUNT="$(( ${PIDCOUNT} + 1))"
 }
 
 start_service_remote()
@@ -43,8 +40,6 @@ start_service_remote()
        procd_set_param command "$PROG" -f -r "$log_ip" "${log_port:-514}" -p "$pid_file"
         [ "${log_proto}" != "udp" ] || procd_append_param command -u
        procd_close_instance
-
-       PIDCOUNT="$(( ${PIDCOUNT} + 1))"
 }
 
 service_triggers()