	if [ -f /etc/inetd.conf ]; then\
		cp /etc/inetd.conf inetd.conf.backup;\
	fi
	apk_add $@
	echo "telnet	stream	tcp	nowait	root	/usr/sbin/in.telnetd	telnetd" > /etc/inetd.conf
	/etc/init.d/inetd start
	nmap localhost | grep telnet
	/etc/init.d/inetd stop
	if [ -f inetd.conf.backup ]; then\
		mv inetd.conf.backup /etc/inetd.conf;\
	fi
	apk_del $@
