mirror of
https://github.com/alexgo-io/stacks-puppet-node.git
synced 2026-05-12 16:22:53 +08:00
39 lines
707 B
Bash
Executable File
39 lines
707 B
Bash
Executable File
#!/bin/bash
|
|
#-----------------------
|
|
# Copyright 2014 Halfmoon Labs, Inc.
|
|
# All Rights Reserved
|
|
#-----------------------
|
|
|
|
echo "Enter MONGODB_URI:"
|
|
read input
|
|
export MONGODB_URI=$input
|
|
|
|
echo "Enter OLD_DB:"
|
|
read input
|
|
export OLD_DB=$input
|
|
|
|
echo "Enter FRONTEND_SECRET:"
|
|
read input
|
|
export FRONTEND_SECRET=$input
|
|
|
|
echo "Enter NAMECOIND_SERVER:"
|
|
read input
|
|
export NAMECOIND_SERVER=$input
|
|
|
|
echo "Enter NAMECOIND_PORT:"
|
|
read input
|
|
export NAMECOIND_PORT=$input
|
|
|
|
echo "Enter NAMECOIND_USER:"
|
|
read input
|
|
export NAMECOIND_USER=$input
|
|
|
|
echo "Enter NAMECOIND_PASSWD:"
|
|
read input
|
|
export NAMECOIND_PASSWD=$input
|
|
|
|
echo "Enter NAMECOIND_WALLET_PASSPHRASE:"
|
|
read input
|
|
export NAMECOIND_WALLET_PASSPHRASE=$input
|
|
|
|
echo "Done" |