1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/duniter_ynh.git synced 2024-09-03 18:26:35 +02:00

fix config

This commit is contained in:
Moul 2015-06-02 17:57:56 -04:00
parent 1f61c656cb
commit df711546e4

View file

@ -1,13 +1,16 @@
#!/bin/bash #!/bin/bash
# Retrieve arguments # Retrieve arguments
ipv4=ifconfig | grep "inet addr:" | sed '1!d' | cut -d : -f 2 | cut -b -14
domain=$1 domain=$1
port=$2 port=$2
sync_node=$3 sync_node=$3
sync_port=$4 sync_port=$4
salt=$5 salt=$5
pwd=$6 pwd=$6
cpu=$7 cpu=$(($7/100))
#cpu=`expr $7 / 100`
#cpu=calc{$7/100}
# Install dependencies: nodejs, npm # Install dependencies: nodejs, npm
sudo apt-get -y -qq install nodejs npm nodejs-legacy sudo apt-get -y -qq install nodejs npm nodejs-legacy
@ -26,8 +29,8 @@ fi
sudo yunohost firewall allow TCP $port > /dev/null 2>&1 sudo yunohost firewall allow TCP $port > /dev/null 2>&1
# Configure and sync uCoin node # Configure and sync uCoin node
ucoind config --noupnp --remoteh $domain --port $port --salt $salt --passwd $pwd --cpu $cpu / 100 ucoind config --noupnp --ipv4 $ipv4 --remote4 $ipv4 --remoteh $domain --port $port --remotep $port --salt $salt --passwd $pwd --cpu $cpu
ucoind sync $sync_node $sync_port ucoind sync $sync_node $sync_port
# Launch uCoin node with daemon pm2 # Launch uCoin node with daemon pm2
pm2 start /usr/bin/ucoind -- start --noupnp pm2 start /usr/bin/ucoind -- start