if  !  grep  -q  CONFIGURED  $MODULE_CONFIG;  then

  if  query  "Enable cookie support?" y;  then
    OPTS="$OPTS --enable-cookies"
  else
    OPTS="$OPTS --disable-cookies"
  fi
  if  query  "Enable IPv6 support?" n;  then
    OPTS="$OPTS --enable-ipv6"
  else
    OPTS="$OPTS --disable-ipv6"
  fi
  if query "Enable SSL" y; then
    OPTS="$OPTS --enable-ssl"
  fi

  echo  'OPTS='\"$OPTS\"  >>  $MODULE_CONFIG
  echo  'CONFIGURED="y"'  >>  $MODULE_CONFIG

fi
