#!/bin/sh
# post install script for the Debian GNU/Linux xtell package

set -e

#update-inetd --file /etc/services --add 'xtell		4224/tcp			# xtell server'
#update-inetd --add 'xtell		stream	tcp	nowait	nobody	/usr/sbin/tcpd	/usr/sbin/xtelld'

chown root.tty /usr/sbin/xtelld
chmod g+s /usr/sbin/xtelld

# Automatically added by dh_installinit
update-rc.d xtell defaults >/dev/null
/etc/init.d/xtell start
# End automatically added section
