if ! grep -q CONFIGURED $MODULE_CONFIG; then

  if  [ -f $CONFIG_CACHE/net-tools.config.h ]; then
    if query "Reconfigure net-tools?" n; then
      rm -f $CONFIG_CACHE/net-tools.config.h
      if query "Auto configure net-tools?" y; then
        echo 'AUTOCONF="y"' >> $MODULE_CONFIG
      fi
    fi
  else
    if query "Auto configure net-tools?" y; then
      echo 'AUTOCONF="y"' >> $MODULE_CONFIG
    fi
  fi

  if query "Do you want to configure your network?" n; then
    echo 'RUN_LNET="y"' >> $MODULE_CONFIG
  fi

  echo 'CONFIGURED="y"' >> $MODULE_CONFIG
fi
