Skip to content

Instantly share code, notes, and snippets.

@muziyoshiz
Created February 2, 2016 13:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save muziyoshiz/6be2dff3f6bbbb1df9fa to your computer and use it in GitHub Desktop.
Save muziyoshiz/6be2dff3f6bbbb1df9fa to your computer and use it in GitHub Desktop.
Launchd setting for embulk-output-healthplanet
<?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>
<!-- job name -->
<key>Label</key>
<string>jp.muziyoshiz.embulk-healthplanet</string>
<key>WorkingDirectory</key>
<string>/Users/myoshiz/job/embulk-healthplanet</string>
<key>ProgramArguments</key>
<array>
<string>/Users/myoshiz/.embulk/bin/embulk</string>
<string>run</string>
<string>embulk-healthplanet.yml</string>
<string>-o</string>
<string>embulk-healthplanet.yml</string>
</array>
<!-- For agent, execution at login -->
<key>RunAtLoad</key>
<true/>
<!-- Execute every full hour and half hour -->
<key>StartCalendarInterval</key>
<array>
<dict>
<key>Minute</key>
<integer>0</integer>
</dict>
<dict>
<key>Minute</key>
<integer>30</integer>
</dict>
</array>
<key>StandardErrorPath</key>
<string>/dev/null</string>
<!-- <string>embulk-healthplanet-error.log</string> -->
<key>StandardOutPath</key>
<string>/dev/null</string>
<!-- <string>embulk-healthplanet.log</string> -->
</dict>
</plist>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment