Hi Everyone,

I am just using this script as a starting point: just pulling all the
patch rpms that are available in the updates repository.  Maybe I will
rewrite it to pull only the installed rpms later, but I hope it will
work as a starting point to get things working.  My HAL cdrom access
problem is already solved this way:
patchdownload.sh
        #!/bin/bash
        
        BASEURL="http://ftp5.gwdg.de/pub/suse/update/10.2/rpm/i586/";
        WORKDIR=/usr/local/src/updates/patchrpms/
        
        cd $WORKDIR
        #get list of rpms from the patch directory
        wget -c $BASEURL
        #compile a list of patch rpms
        awk -Fhref= '/patch.rpm/{print $2}' index.html|awk -F\" '{print
        $2}'>list
        #and pull rpms
        while read line
        do
                wget -c $BASEURL/$line
        done<list

Let me know if I am doing something the "too long" way round.

Prajjwal

On Fri, 2007-04-20 at 08:47 +0545, Prajjwal Devkota wrote:
> That is an inconvenience: I found out that I need to update every
> opensuse 10.2 system for the following reasons:
>         a. After joining to a windows domain, removable device access
>         fails (apparently HAL policy problem)
>         b. Evolution keeps asking for password when connecting to
>         Microsoft Exchange
> Lets see if I can isolate the patches required, or find another way to
> cache updates.  Does anyone have any idea about using yum/smart to do
> the same?  I plan to look into that soon.
> 
> Prajjwal
> 
> On Wed, 2007-04-18 at 20:20 +0200, Carlos E. R. wrote:
> > -----BEGIN PGP SIGNED MESSAGE-----
> > Hash: SHA1
> > 
> > 
> > The Friday 2007-04-13 at 13:14 +0200, Roger Oberholtzer wrote:
> > 
> > > I have seen them in /var/lib/YaST2/you/mnt
> > > 
> > > But, you must be sure that you have not checked the button in YAST that
> > > causes them to be deleted after they are installed. 
> > 
> > No matter what I do, they are always deleted. That click box is ignored :-/
> > 
> > - -- 
> > Cheers,
> >        Carlos E. R.
> > 
> > -----BEGIN PGP SIGNATURE-----
> > Version: GnuPG v1.4.5 (GNU/Linux)
> > Comment: Made with pgp4pine 1.76
> > 
> > iD8DBQFGJmFetTMYHG2NR9URArGKAJ4uZiYYVscfgozzE0640z2bV9f/9ACgg/Kp
> > /83kovLHIDNJyz4JfyT/kBI=
> > =ITiQ
> > -----END PGP SIGNATURE-----
> > 
> 
> Message Disclaimer: This electronic message may contain confidential 
> information. If you have received it in error,
> please immediately inform the sender and delete the mail and any attachments. 
> Unless it relates to the official business 
> of UMN, any opinions, views and other information expressed in this document 
> are those of the individual sender. 
> 
-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to