summaryrefslogtreecommitdiffstats
path: root/target/device/valka/target_skeleton/etc/rc.d/inetd
diff options
context:
space:
mode:
Diffstat (limited to 'target/device/valka/target_skeleton/etc/rc.d/inetd')
-rwxr-xr-xtarget/device/valka/target_skeleton/etc/rc.d/inetd27
1 files changed, 0 insertions, 27 deletions
diff --git a/target/device/valka/target_skeleton/etc/rc.d/inetd b/target/device/valka/target_skeleton/etc/rc.d/inetd
deleted file mode 100755
index f0d8d8452..000000000
--- a/target/device/valka/target_skeleton/etc/rc.d/inetd
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/bin/ash
-. /etc/rc.subr
-
-start() {
- echo -n " * Starting inetd: "
- if [ ! -x ${inetd_program} ]; then
- log_error "Missing 'inetd' program (${inetd_program})"
- echo "Failed"
- return 1
- fi
-
- ${inetd_program} -f ${inetd_flags} &
- pid=$!
- if [ "$?" -eq 0 ]; then
- echo "${pid}" > ${inetd_pidfile}
- echo "Ok"
- else
- echo "Failed"
- fi
-}
-
-stop() {
- echo " * Stopping inetd..."
- killpid ${inetd_pidfile}
-}
-
-rc_run_command "$1" "inetd"