# update-only.conf - only update existing rpm's # # Eric Myers - 15 July 2002 # @(#) Last changed: -EAM 17Jul2002 ######################################################################## # This will download and automatically install the latest updates on # our FTP site, but will silently ignore new packages. # This is for a sub-site, not the master site. ## # Red Hat Updates first ftppool ("vc-physics") { Report_To ("root"); Recursive (Yes); Regex_Ignore("^kernel-"); Regex_Ignore ("^XFree86-"); action (updated) { # install any updates PGP_Require (Yes); PGP_Fail_Install (No); Auto_Follow_Deps(Yes); Install (Auto); Report(Yes); } action(new) { # but no *new* packages PGP_Require (No); PGP_Fail_Install (No); Install (No); Report(No); } } ## # LIGO cluster additions ftppool ("vc-ligo") { Report_To ("root"); Recursive (Yes); Regex_Ignore("^kernel-"); Regex_Ignore ("^XFree86-"); action (updated) { # install any updates PGP_Require (Yes); PGP_Fail_Install (No); Auto_Follow_Deps(Yes); Install (Auto); Report(Yes); } action(new) { # but no *new* packages PGP_Require (No); PGP_Fail_Install (No); Install (No); Report(No); } } ##