On 01/11/10 09:41 AM, Fr?d?ric VANNIERE wrote: >> Another thing that might be contributing to this is how AI is performing the >> installs. >> Can you provide the full install log? > > It's here : http://pastebin.com/m3c26ca80 > > Note: The PWKinstall-opensolaris package is downloaded from a custom IPS > repository and is post-install my customization script (I'll post about this > latter) .
That helps quite a bit; AI appears to be executing the pkg command to install each package separately and for other tasks (over 90 times). That's going to be much slower than simply executing the pkg(1) command once for all packages to be installed. Not only that, AI should really be using the python pkg.client.api that's provided instead as that would further reduce the overhead of the operations it is performing. Given the AI manifest you were using [1], I would have only expected a single pkg install command at the least. -- Shawn Walker [1] http://pastebin.com/m6d06192d
