busybox: convert telnet init script to procd
[openwrt.git] / package / utils / busybox / files / telnet
index 994e713..8ffd904 100755 (executable)
@@ -2,6 +2,9 @@
 # Copyright (C) 2006-2011 OpenWrt.org
 
 START=50
 # Copyright (C) 2006-2011 OpenWrt.org
 
 START=50
+USE_PROCD=1
+PROG=/usr/sbin/telnetd
+NAME=telnetd
 
 has_root_pwd() {
        local pwd=$([ -f "$1" ] && cat "$1")
 
 has_root_pwd() {
        local pwd=$([ -f "$1" ] && cat "$1")
@@ -23,15 +26,13 @@ has_ssh_pubkey() {
        ( /etc/init.d/sshd enabled 2> /dev/null && grep -qs "^ssh-" "$(get_root_home /etc/passwd)"/.ssh/authorized_keys )
 }
 
        ( /etc/init.d/sshd enabled 2> /dev/null && grep -qs "^ssh-" "$(get_root_home /etc/passwd)"/.ssh/authorized_keys )
 }
 
-start() {
+start_service() {
        if ( ! has_ssh_pubkey && \
             ! has_root_pwd /etc/passwd && ! has_root_pwd /etc/shadow ) || \
           ( ! /etc/init.d/dropbear enabled 2> /dev/null && ! /etc/init.d/sshd enabled 2> /dev/null );
        then
        if ( ! has_ssh_pubkey && \
             ! has_root_pwd /etc/passwd && ! has_root_pwd /etc/shadow ) || \
           ( ! /etc/init.d/dropbear enabled 2> /dev/null && ! /etc/init.d/sshd enabled 2> /dev/null );
        then
-               service_start /usr/sbin/telnetd -l /bin/login.sh
+               procd_open_instance
+               procd_set_param command "$PROG" -F -l /bin/login.sh
+               procd_close_instance
        fi
 }
        fi
 }
-
-stop() {
-       service_stop /usr/sbin/telnetd
-}