-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
LaunchD plist (from issue #2) and docs to support it.
- Loading branch information
1 parent
e3473ae
commit cf02f4b
Showing
2 changed files
with
34 additions
and
1 deletion.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?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.github.jessepeterson.margarita</string> | ||
<key>RunAtLoad</key> | ||
<true/> | ||
<key>KeepAlive</key> | ||
<true/> | ||
<key>ProgramArguments</key> | ||
<array> | ||
<string>/usr/bin/python</string> | ||
<string>/usr/local/margarita/margarita.py</string> | ||
</array> | ||
<key>StandardErrorPath</key> | ||
<string>/var/log/margarita.log</string> | ||
<key>StandardOutPath</key> | ||
<string>/var/log/margarita.log</string> | ||
</dict> | ||
</plist> |