config_query  PCIUTILS_UPDATE  "Download the current snapshot of pci.ids?"  n
if [[ $PCIUTILS_UPDATE == y ]]; then
  if spell_ok wget; then
    PCIUTILS_DOWNLOADER=wget
  elif spell_ok curl; then
    PCIUTILS_DOWNLOADER=curl
  else
    config_query_list PCIUTILS_DOWNLOADER "Which downloader do you want?" wget curl
  fi
fi
