diff options
author | Kevin Bowling <kbowling@FreeBSD.org> | 2020-11-17 02:36:54 +0000 |
---|---|---|
committer | Kevin Bowling <kbowling@FreeBSD.org> | 2020-11-17 02:36:54 +0000 |
commit | f0acac574db8f3c4383b0f501a93ace18ac5a0a9 (patch) | |
tree | 3371a5d601cf9360b095febdd4f9ab33f9851b61 /net-p2p/bitcoin | |
parent | 344db4ff56c147468ca1132ac8e3f74156017413 (diff) |
net-p2p/bitcoin-daemon: Move PID to /var/run
This deconflicts the GUI client, and fixes a permission error for the daemon
even when running stand alone.
PR: 246792
Reported by: Seth586 at protonmail.com, oobaz at frammish.org
Sponsored by: BBOX.io
Notes
Notes:
svn path=/head/; revision=555537
Diffstat (limited to 'net-p2p/bitcoin')
-rw-r--r-- | net-p2p/bitcoin/files/bitcoind.in | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/net-p2p/bitcoin/files/bitcoind.in b/net-p2p/bitcoin/files/bitcoind.in index 75898677e6db..e405fba3ace4 100644 --- a/net-p2p/bitcoin/files/bitcoind.in +++ b/net-p2p/bitcoin/files/bitcoind.in @@ -33,7 +33,7 @@ stop_cmd="bitcoind_stop" stop_postcmd="bitcoind_wait" command="%%PREFIX%%/bin/bitcoind" daemon_command="/usr/sbin/daemon" -#pidfile="/var/run/${name}.pid" +pidfile="/var/run/${name}.pid" extra_commands="configtest" @@ -50,7 +50,6 @@ load_rc_config ${name} # set up dependant variables procname="${command}" -pidfile="${bitcoind_data_dir}/bitcoind.pid" required_files="${bitcoind_config_file}" |