mirror of
https://github.com/alexgo-io/stacks-puppet-node.git
synced 2026-04-17 22:24:34 +08:00
22 lines
386 B
Bash
22 lines
386 B
Bash
#!/bin/bash
|
|
|
|
echo "Enter BITCOIND_SERVER:"
|
|
read input
|
|
export BITCOIND_SERVER=$input
|
|
|
|
echo "Enter BITCOIND_PORT:"
|
|
read input
|
|
export BITCOIND_PORT=$input
|
|
|
|
echo "Enter BITCOIND_USER:"
|
|
read input
|
|
export BITCOIND_USER=$input
|
|
|
|
echo "Enter BITCOIND_PASSWD:"
|
|
read input
|
|
export BITCOIND_PASSWD=$input
|
|
|
|
echo "Enter BITCOIND_WALLET_PASSPHRASE:"
|
|
read input
|
|
export BITCOIND_WALLET_PASSPHRASE=$input
|