85 lines
1.7 KiB
Bash
Executable File
85 lines
1.7 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# setup colors
|
|
red=`tput setaf 1`
|
|
green=`tput setaf 2`
|
|
cyan=`tput setaf 6`
|
|
bold=`tput bold`
|
|
reset=`tput sgr0`
|
|
|
|
heading()
|
|
{
|
|
echo
|
|
echo "${cyan}==>${reset}${bold} $1${reset}"
|
|
}
|
|
|
|
success()
|
|
{
|
|
echo
|
|
echo "${green}==>${bold} $1${reset}"
|
|
}
|
|
|
|
error()
|
|
{
|
|
echo
|
|
echo "${red}==>${bold} Error: $1${reset}"
|
|
}
|
|
|
|
heading "You're about to install ethereum."
|
|
echo "Please choose one of the following:"
|
|
echo "1. eth"
|
|
echo "2. geth"
|
|
while true; do
|
|
read -p "Choose the implementation: " imp
|
|
case $imp in
|
|
[1]* ) ethtype="eth"; break;;
|
|
[2]* ) ethtype="geth"; break;;
|
|
* ) echo "Please answer 1 or 2.";;
|
|
esac
|
|
done
|
|
|
|
heading "Installing" $ethtype
|
|
|
|
cd ~
|
|
|
|
[ ! -d "bin" ] && mkdir bin
|
|
[ ! -d "logs" ] && mkdir logs
|
|
|
|
# update packages
|
|
sudo apt-get update -y
|
|
sudo apt-get upgrade -y
|
|
sudo apt-get install -y software-properties-common
|
|
|
|
# add ethereum repos
|
|
sudo add-apt-repository -y ppa:ethereum/ethereum
|
|
sudo add-apt-repository -y ppa:ethereum/ethereum-dev
|
|
sudo apt-get update -y
|
|
|
|
# install ethereum & install dependencies
|
|
sudo apt-get install -y build-essential git unzip wget nodejs npm ntp cloud-utils $ethtype
|
|
|
|
# add node symlink if it doesn't exist
|
|
[[ ! -f /usr/bin/node ]] && sudo ln -s /usr/bin/nodejs /usr/bin/node
|
|
|
|
# set up time update cronjob
|
|
sudo bash -c "cat > /etc/cron.hourly/ntpdate << EOF
|
|
#!/bin/sh
|
|
sudo service ntp stop
|
|
sudo ntpdate -s ntp.ubuntu.com
|
|
sudo service ntp start
|
|
EOF"
|
|
|
|
sudo chmod 755 /etc/cron.hourly/ntpdate
|
|
|
|
# add node service
|
|
cd ~/bin
|
|
|
|
[ ! -d "www" ] && git clone https://github.com/cubedro/eth-net-intelligence-api www
|
|
cd www
|
|
git pull
|
|
|
|
[[ ! -f ~/bin/processes.json ]] && cp -b ./processes-ec2.json ./../processes.json
|
|
|
|
sudo npm install
|
|
sudo npm install pm2 -g
|