Re: Flat Packages Inside A Metapackage
site_archiver@lists.apple.com Delivered-To: Installer-dev@lists.apple.com Thread-index: AcvqG9kFUqMZwetzQ0WF9lalMOed4w== Thread-topic: Flat Packages Inside A Metapackage For what it is worth, this is exactly what the old NetRestore did....just looped through a directory of packages to install. You could also use a text file listing the packages and process that, so that packages get installed in the order you wish (if any depend on others)...which is what we used to do with our NetRestore single_computer.txt file.....which had a list of packages for that computer and read that in and processed it in a loop to install listed packages. -Mike On Mar 23, 2011, at 9:32 PM, Doug Brown wrote:
On 24 March 2011 11:21, Joseph Chilcote <chilcote+installerdev@gmail.com> wrote:
Maintaining an mpkg of all your software would be a logistical nightmare. However, if you wanted something extremely quick and dirty you could have a script loop through a folder of pkgs and install them. E.g.:
for i in `ls -d /Volumes/Share/Packages/*.*.pkg; do installer -pkg ${i} -target / done
This is good advice. Under certain circumstances I use a little utility called InstallPKG, which does the same thing. It is handy because it will let you install all packages, metapackages including those within DMGs from a folder. http://www.macupdate.com/app/mac/25774/installpkg _______________________________________________ Do not post admin requests to the list. They will be ignored. Installer-dev mailing list (Installer-dev@lists.apple.com) Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/installer-dev/perbix%40lmsd.org
This email sent to perbix@lmsd.org
_______________________________________________ Do not post admin requests to the list. They will be ignored. Installer-dev mailing list (Installer-dev@lists.apple.com) Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/installer-dev/site_archiver%40lists.a... This email sent to site_archiver@lists.apple.com
participants (1)
-
Perbix, Michael