source: box/trunk/contrib/mac_osx/org.boxbackup.bbackupd.plist.in @ 2854

Revision 2854, 588 bytes checked in by jamesog, 16 months ago (diff)

Tell launchd that the daemon is not on-demand and should always run.

Ref:  http://developer.apple.com/library/mac/#documentation/MacOSX/Conceptual/BPSystemStartup/Articles/LaunchOnDemandDaemons.html#//apple_ref/doc/uid/TP40001762-104142
Submitted by: Achim J. Latz

Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3<plist version="1.0">
4<dict>
5        <key>Label</key>
6        <string>org.boxbackup.bbackupd</string>
7        <key>OnDemand</key>
8        <false/>
9        <key>RunAtLoad</key>
10        <true/>
11        <key>ProgramArguments</key>
12        <array>
13                <string>@prefix@/sbin/bbackupd</string>
14                <string>-F</string>
15                <string>@prefix@/etc/boxbackup/bbackupd.conf</string>
16        </array>
17        <key>LowPriorityIO</key>
18        <true/>
19        <key>Nice</key>
20        <integer>1</integer>
21</dict>
22</plist>
Note: See TracBrowser for help on using the repository browser.