diff options
author | Kali Kaneko <kali@leap.se> | 2017-11-30 14:50:05 +0100 |
---|---|---|
committer | Kali Kaneko <kali@leap.se> | 2017-11-30 14:50:10 +0100 |
commit | cf543e1d31776960192df44becdf59b867eeed7f (patch) | |
tree | dad02c903bee046f3effd00a043cb377c1a17384 /pkg | |
parent | cff3550ccae01bb61c6aa5db710b70ea01de5d11 (diff) |
[pkg] minor fixes to the service plist
some properties were not used as intended.
Diffstat (limited to 'pkg')
-rw-r--r-- | pkg/osx/scripts/se.leap.bitmask-helper.plist | 23 |
1 files changed, 10 insertions, 13 deletions
diff --git a/pkg/osx/scripts/se.leap.bitmask-helper.plist b/pkg/osx/scripts/se.leap.bitmask-helper.plist index 4428f131..b5990f6e 100644 --- a/pkg/osx/scripts/se.leap.bitmask-helper.plist +++ b/pkg/osx/scripts/se.leap.bitmask-helper.plist @@ -2,28 +2,25 @@ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> + <key>WorkingDirectory</key> + <string>/Applications/Bitmask.app/Contents/Resources/bitmask-helper/</string> <key>StandardOutPath</key> <string>bitmask-helper.log</string> <key>StandardErrorPath</key> <string>bitmask-helper-err.log</string> <key>GroupName</key> <string>daemon</string> - <key>KeepAlive</key> - <dict> - <key>SuccessfulExit</key> - <false/> - </dict> - <key>Label</key> - <string>se.leap.bitmask-helper</string> - <key>ProgramArguments</key> - <array> - <string>/Applications/Bitmask.app/Contents/Resources/bitmask-helper/bitmask-helper</string> - </array> <key>RunAtLoad</key> <true/> - <key>WorkingDirectory</key> - <string>/Applications/Bitmask.app/Contents/Resources/bitmask-helper/</string> <key>SessionCreate</key> <true/> + <key>KeepAlive</key> + <true/> + <key>ThrottleInterval</key> + <integer>5</integer> + <key>Label</key> + <string>se.leap.BitmaskHelper</string> + <key>Program</key> + <string>/Applications/Bitmask.app/Contents/Resources/bitmask-helper/bitmask-helper</string> </dict> </plist> |