Information
The BANNER variable in the file /etc/default/telnetd can be used to display text before the telnet login prompt. Traditionally, it has been used to display the OS level of the target system.
Solution
Perform the following to implement the recommended state-
cd /etc/default awk '/BANNER=/ { $1 = 'BANNER=' }; { print }' telnetd >telnetd.new
mv telnetd.new telnetd
pkgchk -f -n -p /etc/default/telnetd