Created
February 19, 2014 15:07
-
-
Save pajp/9093923 to your computer and use it in GitHub Desktop.
Mac ORSP launchd plist with debug logging enabled
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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>InitGroups</key> | |
<false/> | |
<key>GroupName</key> | |
<string>daemon</string> | |
<key>Label</key> | |
<string>com.f-secure.orspclient</string> | |
<key>ProgramArguments</key> | |
<array> | |
<string>/usr/local/f-secure/bin/orspwrapper.sh</string> | |
<string>--daas2-data</string> | |
<string>./orspclient/etc</string> | |
<string>--http-port</string> | |
<string>0</string> | |
<string>--debug</string> | |
</array> | |
<key>RunAtLoad</key> | |
<true/> | |
<key>UserName</key> | |
<string>daemon</string> | |
<key>Umask</key> | |
<integer>7</integer> | |
<key>WorkingDirectory</key> | |
<string>/usr/local/f-secure/</string> | |
<key>ProcessType</key> | |
<string>Interactive</string> | |
<key>KeepAlive</key> | |
<dict> | |
<key>NetworkState</key> | |
<true/> | |
</dict> | |
<key>EnvironmentVariables</key> | |
<dict> | |
<key>DYLD_LIBRARY_PATH</key> | |
<string>/usr/local/f-secure/orspclient/lib</string> | |
</dict> | |
<key>StandardOutPath</key> | |
<string>/tmp/orsp.log</string> | |
<key>StandardErrorPath</key> | |
<string>/tmp/orsp.log</string> | |
</dict> | |
</plist> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment