mirror of
https://github.com/munki/munki.git
synced 2025-12-30 11:09:57 -06:00
Summary: - wrap entire managedsoftwareupdate execution and kill if open for 12 hours. - move "delay/sleep" logic into supervisor, removing need for updatecheckhelper (but keep updatecheckhelper around so clients continue to work without reloading launchd) git-svn-id: http://munki.googlecode.com/svn/trunk@1115 a4e17f2e-e282-11dd-95e1-755cbddbdd66
26 lines
709 B
Plaintext
26 lines
709 B
Plaintext
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
<plist version="1.0">
|
|
<dict>
|
|
<key>Label</key>
|
|
<string>com.googlecode.munki.managedsoftwareupdate-check</string>
|
|
<key>ProgramArguments</key>
|
|
<array>
|
|
<string>/usr/local/munki/supervisor</string>
|
|
<string>--delayrandom</string>
|
|
<string>3600</string>
|
|
<string>--timeout</string>
|
|
<string>43200</string>
|
|
<string>--</string>
|
|
<string>/usr/local/munki/managedsoftwareupdate</string>
|
|
<string>--auto</string>
|
|
</array>
|
|
<key>StartCalendarInterval</key>
|
|
<dict>
|
|
<key>Minute</key>
|
|
<integer>10</integer>
|
|
</dict>
|
|
</dict>
|
|
</plist>
|
|
|