# update-master.conf - update RPM's and save for later distribution # to the cluster. # # Eric Myers - 15 July 2002 # @(#) Last changed: -EAM 07Aug2002 ######################################################################## # This will download and automatically install the latest updates on # our FTP site, but will silently ignore new packages. # And it will save what has been installed in /root/rpm/updates # This is for the master site only! ftppool ("redhat-updates") { Report_To ("root"); Recursive (Yes); # don't automatically update these! Regex_Ignore("^kernel-"); Regex_Ignore ("^XFree86-"); action (updated) { # install any updates PGP_Require (Yes); PGP_Fail_Install (No); Auto_Follow_Deps(Yes); Copy_after_Install("/root/rpm/updates"); Install (Auto); Report(Yes); } action(new) { # but no *new* packages PGP_Require (No); PGP_Fail_Install (No); Install (No); Report(No); } } ## Now Kernel/X11 only, non-auto-install ftppool ("redhat-updates") { Report_To ("root"); Recursive (Yes); # don't automatically update these! Regex_Accept("^kernel-"); Regex_Accept ("^XFree86-"); action (updated) { # install any updates PGP_Require (Yes); PGP_Fail_Install (No); Auto_Follow_Deps(Yes); Copy_after_Install("/root/rpm/updates"); Install (Interactive); Report(Yes); } action(new) { # but no *new* packages PGP_Require (No); PGP_Fail_Install (No); Install (Interactive); Report(Yes); } } ##