#!/bin/bash # Variables log="stat-install.log" # Check requierments sudo apt update sudo apt install curl net-tools -y echo "${c_green}Astroport installer ### 1. IPFS Swarm Layer$c_" | tee -a $log # Full automatic (you trust this git depot) #curl -s https://git.p2p.legal/axiom-team/astroport/raw/master/.install/ipfs_alone.sh | bash | tee -a $log || exit 1 .install/ipfs_alone.sh | tee -a $log || exit 1 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 | tee -a $log || exit 1 ./zen/tools/make_G1SSB_secret.sh | tee -a $log || exit 1 echo "${c_green}Installation complete$c_" | tee -a $log exit 0