##########################################################
# This one will find new versions of 'autorpm' and notify
# root that it needs to be upgraded (then root can execute
# 'autorpm --apply' to update the RPMs).

ftppool ("autorpm-updates") {

   # We only care about the 'autorpm' file...
   Regex_Accept ("^autorpm"); # accept any files that begin
                              # with the string 'autorpm'

   Report_To ("${ReportDest}");

   action (updated) {
      Install (Interactive);
      Report (Yes);
   }

}

