1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-13 03:03:15 +00:00

net-p2p/bitcoin: fix typos in startup script

PR:		223495
Submitted by:	vd@
Approved by:	robbak@gmail.com (maintainer)
This commit is contained in:
Vasil Dimov 2017-11-08 08:18:27 +00:00
parent d689e22190
commit ca843c7c49
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=453725
2 changed files with 5 additions and 2 deletions

View File

@ -4,6 +4,7 @@
PORTNAME= bitcoin
PORTVERSION= 0.15.0.1
DISTVERSIONPREFIX= v
PORTREVISION?= 1
CATEGORIES= net-p2p finance
MAINTAINER= robbak@robbak.com

View File

@ -12,7 +12,7 @@
# bitcoind_user (str) Set to "bitcoin" by default.
# bitcoind_group (str) Set to "bitcoin" by default.
# bitcoind_conf (str) Set to "%%PREFIX%%/etc/bitcoind.conf" by default.
# bitcoind_data (str) Set to "/var/lib/bitcoin" by default.
# bitcoind_data_dir (str) Set to "/var/db/bitcoin" by default.
# bitcoindlimits_enable (bool) Set to "NO" by default.
# Set it to "YES" to enable bitcoindlimits
# bitcoindlimits_args Set to "-e -U ${bitcoind_user}" by default
@ -121,7 +121,9 @@ bitcoind_start()
${daemon_command} -u "${bitcoind_user}" -p "${pidfile}" \
${command} \
-conf="${bitcoind_config_file}" \
-datadir="${bitcoind_data_dir}" 2> /tmp/bitcoind.stderr > /tmp/bitcoind.stdout
-datadir="${bitcoind_data_dir}" \
2> "${bitcoind_data_dir}/bitcoind.stderr" \
> "${bitcoind_data_dir}/bitcoind.stdout"
}
bitcoind_stop()