Public repo to distribute scripts and config's
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 

11 satır
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.2/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"