Created
March 13, 2017 03:21
-
-
Save stinethebean3/764f22f67ff738cf018c189fe8730758 to your computer and use it in GitHub Desktop.
OSX launchd unit for auto starting gpg-agent script
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//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>EnvironmentVariables</key> | |
| <dict> | |
| <key>PATH</key> | |
| <string>/Users/cvick/.local/bin:/usr/local/bin:/usr/bin:/bin:/opt/bin:/usr/bin:/bin:/usr/sbin:/sbin</string> | |
| </dict> | |
| <key>Label</key> | |
| <string>local.gpg-agent</string> | |
| <key>ProgramArguments</key> | |
| <array> | |
| <string>/Users/cvick/.local/bin/gpg-init</string> | |
| </array> | |
| <key>StandardOutPath</key> | |
| <string>/Users/cvick/.logs/gpg-init.stdout.log</string> | |
| <key>StandardErrorPath</key> | |
| <string>/Users/cvick/.logs/gpg-init.stderr.log</string> | |
| <key>RunAtLoad</key> | |
| <true/> | |
| </dict> | |
| </plist> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment