Post
Topic
Board Announcements (Altcoins)
Re: [ANN] CROPCOIN [CROP] | Tiered Masternodes | PoS | Decentralized Marketplace
by
Nemesissan
on 01/04/2018, 18:45:04 UTC
How can i upgrade my VPS Server with new Wallet ?

https://github.com/zoldur/CropCoin/blob/master/README.md

Wallet update to 1.1.0.0
Run the following commands as root to update CropCoin to version 1.1.0.0

for crop in $(grep -l cropcoind /etc/systemd/system/*.service | awk -F"/" '{print $NF}'); do systemctl stop $crop; done
rm cropcoind.gz
wget -q https://github.com/zoldur/CropCoin/releases/download/v1.1.0.0/cropcoind.gz
gunzip cropcoind.gz
chmod +x cropcoind
cp cropcoind /usr/local/bin
for crop in $(grep -l cropcoind /etc/systemd/system/*.service | awk -F"/" '{print $NF}'); do systemctl start $crop; done