#!/bin/sh
#BLURB="Configure basic network settings"
export TEXTDOMAIN=slint
TMP=/var/log/setup/tmp
dialog --title "`gettext "CONFIGURE NETWORK?"`" --yesno "`gettext "Would you like to \
configure your network?"`" 5 80
if [ $? = 0 ]; then
  while [ 0 ]; do # we're gonna do this until we get it right :-)
    if [ -x /usr/lib/config/netconfig ]; then
      sh /usr/lib/config/netconfig $*
    else
      sh sbin/netconfig $*
    fi
    if [ "$?" = "0" ]; then # success
      break;
    fi
  done
fi
