# If there isn't a current /etc/xinetd.conf, then rename our new
# one to the system copy
if [ ! -f etc/xinetd.conf ]; then
   mv -f etc/xinetd.conf.new etc/xinetd.conf
 else
   rm -f etc/xinetd.conf.new
fi

# Pleb accounts should not be able to read this file
chmod 600 /etc/xinetd.conf

# If configured to do so by an external source
# (eg /ukshells/scripts/slackwareupdate) then restart xinetd after install
#if [ -f /var/log/ukshells-configure/xinetd.restart ]; then
etc/rc.d/rc.xinetd stop
etc/rc.d/rc.xinetd start
#fi

