astroport/install.sh

19 lines
571 B
Bash
Raw Normal View History

2020-03-18 05:06:01 +01:00
#!/bin/bash
2020-05-15 22:02:32 +02:00
# Check requierments
sudo apt update
sudo apt install curl net-tools -y
2020-03-18 05:06:01 +01:00
2020-05-15 22:02:32 +02:00
echo "${c_green}Astroport installer
###
1. IPFS Swarm Layer$c_"
# Full automatic (you trust this git depot)
curl -s https://git.p2p.legal/axiom-team/astroport/raw/master/.install/ipfs_alone.sh | bash || exit 1
2020-05-06 17:32:52 +02:00
2020-05-15 22:02:32 +02:00
echo "${c_green}2. Ḡ1/ScuttleButt anoptical layer$c_"
# ONCE YOU READ and AGREE. Run TrustFull QUICK Install !!
curl -s https://git.p2p.legal/axiom-team/astroport/raw/master/zen/tools/make_G1SSB_secret.sh | bash || exit 1
2020-03-18 05:06:01 +01:00
2020-05-15 22:02:32 +02:00
echo "${c_green}Installation complete$c_"
2020-03-18 05:06:01 +01:00
exit 0