1
0
mirror of https://github.com/ipfs/kubo.git synced 2025-09-13 00:38:34 +08:00
Files
kubo/misc/launchd/io.ipfs.ipfs-daemon.plist
Jonathan Dahan 5ed2322772 Have install.sh use the full path to ipfs binary if detected
License: MIT
Signed-off-by: Jonathan Dahan <jonathan@jonathan.is>
2015-12-16 11:31:55 -05:00

28 lines
741 B
Plaintext

<?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>KeepAlive</key>
<true/>
<key>Label</key>
<string>io.ipfs.ipfs-daemon</string>
<key>ProgramArguments</key>
<array>
<string>{{IPFS_BIN}}</string>
<string>daemon</string>
</array>
<key>EnvironmentVariables</key>
<dict>
<key>IPFS_PATH</key>
<string>{{IPFS_PATH}}</string>
</dict>
<key>RunAtLoad</key>
<true/>
<key>StandardErrorPath</key>
<string>{{IPFS_PATH}}/logs/stderr.log</string>
<key>StandardOutPath</key>
<string>{{IPFS_PATH}}/logs/stdout.log</string>
</dict>
</plist>