From a4cbf58f836c8e46f8cdbc9e1eabe1d0b606ce6a Mon Sep 17 00:00:00 2001 From: Michael Walle Date: Mon, 7 Nov 2016 17:05:12 +0100 Subject: [PATCH] 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 Signed-off-by: Thomas Petazzoni --- package/busybox/S50telnet | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/package/busybox/S50telnet b/package/busybox/S50telnet index 47e2b63e19..82952b8cb8 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" } -- 2.30.2