Displaying 2 results from an estimated 2 matches for "pkg_deploy".
2013 Nov 23
2
OSX 10.9 appdmg/pkgdmg
Howdy,
Trying to install dmg files with puppet. However, after running my manifest
the .dmg file is never downloaded by curl. I tried pkgdmg and appdmg. I
also tried using a local directory as the source. It seems to ignore any
path I give as the source even totally bogus ones.
1 define pkg_deploy($sourcedir = false) {
2 $sourcedir_real = $sourcedir ? {
3 false => "http://webserver/folder/",
4 default => $sourcedir
5 }
6 package { $name:
7 ensure => installed,
8 provider =...
2007 Apr 30
17
Managing packages which require a reboot
Hi,
I''m working on a method to manage packages which require a reboot after
being installed. I''m curious how other people are handling this problem.
Consider the resource:
pkg_deploy { "MacOSXUpdCombo10.4.9Intel.dmg": alias => macosx1049 }
I''d like to only install the package under if the following conditions
are met:
- No user is logged into the console.
- No user logs in while the package is being installed.
- The computer will be rebooted after conf...