#!/bin/sh
if [ -r /tmp/SeTcolor -o "$COLOR" = "on" ]; then
 dialog --title "CONFIGURE NETWORK?" --yesno "Would you like to \
configure your network?" 6 60
 if [ $? = 0 ]; then
  NETCONF="y"
  sh sbin/netconfig.color
 fi
else
 echo -n "Would you like to configure your network ([y]es, [n]o)? "
 read NETCONF;
 if [ "$NETCONF" = "y" ]; then
  sh sbin/netconfig.tty
 fi
fi
