Public repo to distribute scripts and config's
25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #/bin/bash
- # Script to upgrade Mycelium peer or client
- cd ~
- wget https://github.com/threefoldtech/mycelium/releases/download/v0.5.1/mycelium-x86_64-unknown-linux-musl.tar.gz
- tar zxvf mycelium-x86_64-unknown-linux-musl.tar.gz
- systemctl stop mycelium
- mv mycelium /usr/bin/
- systemctl start mycelium
- rm mycelium-x86_64-unknown-linux-musl.tar.gz
- echo "Mycelium upgraded"
|