summaryrefslogtreecommitdiff
path: root/package/busybox
diff options
context:
space:
mode:
authorMichael Walle <michael@walle.cc>2016-11-07 17:05:12 +0100
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2016-11-07 22:58:04 +0100
commita4cbf58f836c8e46f8cdbc9e1eabe1d0b606ce6a (patch)
tree6f8e461f2e5de28e9c0e90b9c2892e332bacc67d /package/busybox
parent100ed2c05a47b239b383a2f83f1ffc8bb70b86f9 (diff)
busybox: allow the user to set the telnetd options
Source /etc/default/telnet to make it possible to override the telnetd arguments. For example a user may want to set an alternative port. Signed-off-by: Michael Walle <michael@walle.cc> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/busybox')
-rwxr-xr-xpackage/busybox/S50telnet5
1 files changed, 4 insertions, 1 deletions
diff --git a/package/busybox/S50telnet b/package/busybox/S50telnet
index 47e2b63e1..82952b8cb 100755
--- a/package/busybox/S50telnet
+++ b/package/busybox/S50telnet
@@ -3,10 +3,13 @@
# Start telnet....
#
+TELNETD_ARGS=-F
+[ -r /etc/default/telnet ] && . /etc/default/telnet
+
start() {
printf "Starting telnetd: "
start-stop-daemon -S -q -m -b -p /var/run/telnetd.pid \
- -x /usr/sbin/telnetd -- -F
+ -x /usr/sbin/telnetd -- $TELNETD_ARGS
[ $? = 0 ] && echo "OK" || echo "FAIL"
}