Hi,
Beat Rubischon schrieb:
Am 31.8.2006 11:33 Uhr schrieb "Ian Grant" unter Ian.Grant@cl.cam.ac.uk:
Does anyone have XML for OpenSUSE 10.1 to cause autoyast to do an online update at install time?
The only solution I found was to integrate the patches as an additional installsource. Using "rug" in a postinstall script is quite problematic, as it is not able to install the libzypp patch.
thats correct but you can install the RPM prior to updating:
######################## ncftpget ftp://$<ftp-mirror>/mirror/ftp.suse.com/pub/suse/i386/update/10.1/rpm/i586/libzypp-zmd-backend.rpm ncftpget ftp://$<ftp-mirror>/mirror/ftp.suse.com/pub/suse/i386/update/10.1/rpm/i586/libzypp.rpm ncftpget ftp://$<ftp-mirror>/mirror/ftp.suse.com/pub/suse/i386/update/10.1/rpm/i586/rug.rpm ncftpget ftp://$<ftp-mirror>/mirror/ftp.suse.com/pub/suse/i386/update/10.1/rpm/i586/zmd.rpm
rpm -Uvh --nodeps *.rpm # install rpm
sleep 240 # cause rug needs to update/refresh
rug up -y # update ########################
Not really fine but it works.