Public repo to distribute scripts and config's
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

11 lines
366 B

  1. #/bin/bash
  2. # Script to upgrade Mycelium peer or client
  3. cd ~
  4. wget https://github.com/threefoldtech/mycelium/releases/download/v0.5.1/mycelium-x86_64-unknown-linux-musl.tar.gz
  5. tar zxvf mycelium-x86_64-unknown-linux-musl.tar.gz
  6. systemctl stop mycelium
  7. mv mycelium /usr/bin/
  8. systemctl start mycelium
  9. rm mycelium-x86_64-unknown-linux-musl.tar.gz
  10. echo "Mycelium upgraded"