| I have found this useful for our lab machines and this is what I have cobbled together. I made a package with Iceberg which Munki installs on the clients. The package is simply the Remote Update manager folder and its associated files which goes into the Utilities folder. The pkginfo file has a post install script which runs the shell script. <key>postinstall_script</key> <string>#!/bin/sh /Applications/Utilities/Remote\ Update\ Manager/InstallRUMManPage.sh </string> Then, with ARD, I put a launchdaemon file into /Library/Launchdaemons which calls the utility at
08:00 hrs. <dict> <key>Label</key> <string>com.adoberemoteupdater</string> <key>ProgramArguments</key> <array> <string>/Applications/Utilities/Remote Update Manager/RemoteUpdateManager</string> </array> <key>StartCalendarInterval</key> <dict> <key>Hour</key> <integer>8</integer> </dict> </dict> I suppose I could have added the launchdaemon to the package so Munki adds it as well. ----------------------------------------------------------------------- “Weaseling out of things is important to learn. It’s what separates us from the animals.....except the weasel” ~ Homer Simpson --- On Fri, 27/7/12, Ted August <taugust...@gmail.com> wrote: |