You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
297 B
15 lines
297 B
#!/bin/bash
|
|
|
|
CONF=${DATA}/vertcoin.conf
|
|
|
|
if [ ! -e "${CONF}" ]; then
|
|
echo "disablewallet=1
|
|
printtoconsole=1
|
|
port=5889
|
|
rpcport=5888
|
|
rpcallowip=::/0
|
|
rpcuser=rpc
|
|
rpcpassword=`dd if=/dev/urandom bs=18 count=1 2>/dev/null | base64`" > "${CONF}"
|
|
fi
|
|
|
|
exec vertcoind -datadir=${DATA} -conf=${CONF} "$@"
|
|
|