##########################################################
# This will keep your computer current with Red Hat's
# official updates.  It will automatically install
# *updated* RPMs and tell you about new ones.

ftppool ("redhat-updates") {

   # The reports in the source blocks contain less useful
   # information than the report for the Queues.  If this
   # is set to the same name as the Report_Queues command
   # then only one mail will be sent containing all the
   # information.
   #Report_To ("${ReportDest}");
   Report_To ("");

   # Don't upgrade kernel packages...
   Regex_Ignore ("^kernel-");

   Recursive (Yes);
   Regex_Dir_Accept("${Arch}");

   action (updated) {
      # Uncomment to automatically install these official updates
      #Install (Auto);
      Install (Interactive);
   }

   action (new) {
      # Interactively install these new packages
      # (you don't have them installed currently, so you might not want them)
      Install (Interactive);
   }
}

