Last active
January 31, 2018 14:28
-
-
Save dch/da502946aee0187ce655666932a45854 to your computer and use it in GitHub Desktop.
an OSX plist for running spiped as a daemon
This file contains hidden or 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 Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Label</key> | |
<string>com.tarsnap.spiped.vault</string> | |
<key>ProgramArguments</key> | |
<array> | |
<string>/usr/local/bin/spiped</string> | |
<string>-D</string> | |
<string>-e</string> | |
<string>-g</string> | |
<string>-F</string> | |
<string>-s</string> | |
<string>[127.0.0.1]:8200</string> | |
<string>-t</string> | |
<string>vault.example.com:8200</string> | |
<string>-k</string> | |
<string>/usr/local/etc/spiped/vault.key</string> | |
</array> | |
<key>RunAtLoad</key> | |
<true/> | |
<key>KeepAlive</key> | |
<true/> | |
<key>StandardOutPath</key> | |
<string>/var/log/spiped-vault.log</string> | |
<key>StandardErrorPath</key> | |
<string>/var/log/spiped-vault.log</string> | |
</dict> | |
</plist> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment