On Wed, Aug 24, 2005 at 04:35:13PM -0400, Will H. Backman wrote: > 1. Packages get installed in a sub-optimal order. Quite often one > package on the list will have already been installed as a dependency. I > think my script downloads the redundant package before deciding that it > was already installed. Good ways to stop that?
Put the full list in the single pkg_add you want to run, this will get sorted appropriately. PKG_PATH=ftplocation pkg_add `cat pkglist` is about what you want.

