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:
parent
d689e22190
commit
ca843c7c49
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=453725
@ -4,6 +4,7 @@
|
||||
PORTNAME= bitcoin
|
||||
PORTVERSION= 0.15.0.1
|
||||
DISTVERSIONPREFIX= v
|
||||
PORTREVISION?= 1
|
||||
CATEGORIES= net-p2p finance
|
||||
|
||||
MAINTAINER= robbak@robbak.com
|
||||
|
@ -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()
|
||||
|
Loading…
Reference in New Issue
Block a user