Hi, I'm trying to set up an autoyast installation. How can I add all available updates to the installation source. I tested with create_update_source.sh, but now I have wrong dependencies with older rpms like glibc. I marked "do not install glibc-2.4-31.30", so I get more and more dependency problems. How can I fix this? Thanks! Nicole #### YaST2 conflicts list - generated 2008-04-29 07:37:42 #### Installation von glibc-2.4-31.30.i686[SUSE Linux Enterprise Server 10 SP1] nicht m.glich glibc-2.4-31.30.i686[SUSE Linux Enterprise Server 10 SP1] kann nicht installiert werden, da glibc-2.4-31.43.6.i686[SUSE Linux Enterprise Server 10 SP1] bereits f.r die Installation gekennzeichnet ist Konfliktl.sung: ( ) glibc-2.4-31.30.i686[SUSE Linux Enterprise Server 10 SP1] nicht installieren ( ) glibc-2.4-31.43.6.i686[SUSE Linux Enterprise Server 10 SP1] nicht installieren ( ) Ignorieren, dass glibc bereits f.r die Installation festgelegt wurde #### YaST2 conflicts list END ###
![]() |
0 |
![]() |
Hi Nicole, you have to run the autoyast installation from the sles 10 sp1 medium itself because otherwise that would break the installation process as you have seen it. You can apply the patches either after the installation or the autoyast file can contain a init-script section and you should be able to put there some scripts in that do the job for you. We install in that init-script section eg. the zenworks linux management client and that one starts right after its installation with the patch process for the server. Here is the script part from our autoyast template: Code: -------------------- ... </runlevel> <scripts> <init-scripts config:type="list"> <script> <filename>zlmreg.sh</filename> <debug config:type="boolean">true</debug> <location></location> <interpreter>shell</interpreter> <source><![CDATA[ #!/bin/bash # # After installation, the logfile from this script can be found in # /var/adm/autoinstall/logs # echo "=========================================" echo "... Starting AutoYAST included script ..." echo "=========================================" mount -o nfsvers=3 10.10.10.10:/install /mnt cd /mnt/inst ./autoyast-post.sh cd / umount /mnt ]]> </source> </script> </init-scripts> </scripts> <security> ... -------------------- What type of update process are you using ? Rainer -- brunold ------------------------------------------------------------------------
![]() |
0 |
![]() |