diff -u -rN autorpm.d.73/autorpm.conf autorpm.d/autorpm.conf --- autorpm.d.73/autorpm.conf Thu Oct 25 05:15:40 2001 +++ autorpm.d/autorpm.conf Sun May 6 18:00:02 2001 @@ -40,6 +40,10 @@ # (won't automatically install anything unless you edit the file) Config_File("/etc/autorpm.d/suse-updates.conf"); +# Look for official SuSE-DE updates +# (won't automatically install anything unless you edit the file) +Config_File("/etc/autorpm.d/suse-de-updates.conf"); + # Look for AutoRPM updates # (don't run by default) #Config_File("/etc/autorpm.d/autorpm-updates.conf"); diff -u -rN autorpm.d.73/pools/suse-de-updates autorpm.d/pools/suse-de-updates --- autorpm.d.73/pools/suse-de-updates Thu Jan 1 01:00:00 1970 +++ autorpm.d/pools/suse-de-updates Wed Nov 29 20:55:41 2000 @@ -0,0 +1 @@ +ftp://ftp.gwdg.de/pub/linux/suse/ftp.suse.de/suse/${Arch}/update/${SuSEVersion} diff -u -rN autorpm.d.73/pools/suse-updates autorpm.d/pools/suse-updates --- autorpm.d.73/pools/suse-updates Thu Oct 25 05:15:40 2001 +++ autorpm.d/pools/suse-updates Wed Nov 29 20:55:26 2000 @@ -1 +1 @@ -ftp://ftp.suse.com/pub/suse/${Arch}/update/${SuSEVersion} +ftp://ftp.gwdg.de/pub/linux/suse/ftp.suse.com/suse/${Arch}/update/${SuSEVersion} diff -u -rN autorpm.d.73/suse-de-updates.conf autorpm.d/suse-de-updates.conf --- autorpm.d.73/suse-de-updates.conf Thu Jan 1 01:00:00 1970 +++ autorpm.d/suse-de-updates.conf Tue Jan 8 12:50:45 2002 @@ -0,0 +1,46 @@ +########################################################## +# This one will find new updatess for SuSE and notify +# root that it needs to be upgraded (then root can execute +# 'autorpm --apply' to update the RPMs). + +# "directory", falls /ftp/pub gemountet ist +# ansonsten "ftppool" +# +#directory ("/ftp/pub/linux/suse/ftp.suse.de/suse/${Arch}/update/${SuSEVersion}") { +ftppool ("suse-de-updates") { + + Ignore_Arch ("src"); + Regex_Ignore ("^kernel"); + Regex_Ignore ("disks"); + Regex_Ignore ("^k_"); + Regex_Ignore ("^pcmcia"); + Regex_Ignore ("^lx_suse"); + Regex_Ignore ("^linux"); + + + Report_To ("${ReportDest}"); + Recursive (Yes); + + action (updated) { + + #Install (Interactive); + + # If you want to check the PGP signature and, if it is okay, install + # automatically, comment the Interactive Install line above and + # uncomment the two lines below. You must have PGP installed and + # have Kirk Bauer's PGP key (run 'finger kirk@ns.kaybee.org') installed + # in root's public keyring. + Install (Auto); + #PGP_Require (Yes); + + Report (Yes); + } +# action (new) { +# # Interactively install these new packages +# # (you don't have them installed currently, so you might not want them) +# Install (Interactive); +# } + + +} + diff -u -rN autorpm.d.73/suse-updates.conf autorpm.d/suse-updates.conf --- autorpm.d.73/suse-updates.conf Thu Oct 25 05:15:40 2001 +++ autorpm.d/suse-updates.conf Tue Jan 8 12:50:40 2002 @@ -3,6 +3,10 @@ # root that it needs to be upgraded (then root can execute # 'autorpm --apply' to update the RPMs). +# "directory", falls /ftp/pub gemountet ist +# ansonsten "ftppool" +# +#directory ("/ftp/pub/linux/suse/ftp.suse.com/suse/${Arch}/update/${SuSEVersion}") { ftppool ("suse-updates") { Ignore_Arch ("src");