1
0
mirror of https://github.com/ipfs/kubo.git synced 2025-10-26 19:05:05 +08:00
Files
kubo/misc/launchd/install.sh
Stephen Sugden 9fc7dfbd15 Template plist to work around launchd limitations
`launchd` doesn't allow you to *use* environment variables. Nor does it support
tilde-expansion of program names & arguments after OSX 10.10.

To work around this, I've made the plist file a template and included a small
install script that will interpolate the correct values.
2015-05-01 11:33:18 +02:00

24 lines
586 B
Bash
Executable File

#!/bin/bash
src_dir=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
plist=io.ipfs.ipfs-daemon.plist
dest_dir="$HOME/Library/LaunchAgents"
IPFS_PATH="${IPFS_PATH:-$HOME/.ipfs}"
escaped_ipfs_path=$(echo $IPFS_PATH|sed 's/\//\\\//g')
mkdir -p "$dest_dir"
sed 's/{{IPFS_PATH}}/'"$escaped_ipfs_path"'/g' \
"$src_dir/$plist" \
> "$dest_dir/$plist"
launchctl list | grep ipfs-daemon >/dev/null
if [ $? ]; then
echo Unloading existing ipfs-daemon
launchctl unload "$dest_dir/$plist"
fi
echo Loading ipfs-daemon
launchctl load "$dest_dir/$plist"
launchctl list | grep ipfs-daemon