[opensuse-autoinstall] Installing RPMs with missing dependencies
I am trying to integrate Dell OpenManage 6.2 storage component to my PXE image. Storage RPMs don't have dependencies setup properly. Therefore, AutoYast installs the RPMs in a random order, and OpenManage setup fails. Is there a way to make AutoYast to install a group of RPMs in a certain order during PXE image? TIA, Enamul -- To unsubscribe, e-mail: opensuse-autoinstall+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-autoinstall+help@opensuse.org
I am trying to integrate Dell OpenManage 6.2 storage component to my PXE image. Storage RPMs don't have dependencies setup properly. Therefore, AutoYast installs the RPMs in a random order, and OpenManage setup fails. Is there a way to make AutoYast to install a group of RPMs in a certain order during PXE image?
I do not know but I would suggest to use a init script using zypper to install additional rpms. like ... for i in rpm1 rpm2 rpm3 ; do /usr/bin/zypper --no-gpg-checks --non-interactive in --auto-agree-with-licenses $i done ... or ... /usr/bin/zypper --no-gpg-checks --non-interactive in --auto-agree-with-licenses rpm1 rpm2 rpm3 ... hth Hajo -- To unsubscribe, e-mail: opensuse-autoinstall+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-autoinstall+help@opensuse.org
on Friday 15 January 2010 Hans-Joachim Ehlers wrote:
I am trying to integrate Dell OpenManage 6.2 storage component to my PXE image. Storage RPMs don't have dependencies setup properly. Therefore, AutoYast installs the RPMs in a random order, and OpenManage setup fails. Is there a way to make AutoYast to install a group of RPMs in a certain order during PXE image?
I do not know but I would suggest to use a init script using zypper to install additional rpms.
that's an option. Or, if only one package needs to be installed at first and the rest can be installed in any order, you can install the first one in <packages> and the rest in <post-packages> But the init-script solution is very fine too, especially if you already have init-scripts. -- ciao, Uwe Gansert Uwe Gansert SUSE LINUX Products GmbH, GF: Markus Rex, HRB 16746 (AG Nürnberg) Business: http://www.suse.de/~ug -- To unsubscribe, e-mail: opensuse-autoinstall+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-autoinstall+help@opensuse.org
participants (3)
-
Enamul Haque
-
Hans-Joachim Ehlers
-
Uwe Gansert