Trustfull QUICKER Solution !!

This commit is contained in:
qo-op 2020-05-04 18:54:12 +02:00
parent e3e4360a85
commit 10961d1d9f
2 changed files with 7 additions and 1 deletions

View File

@ -51,10 +51,14 @@ SystemD ARM & x86_64 compatible. Submit an issue for your Arch.
2 - **Create your “secret” 🔑 (and secret.dunikey) from credentials to benefit extra features 🛸** 2 - **Create your “secret” 🔑 (and secret.dunikey) from credentials to benefit extra features 🛸**
``` ```
# Initialise ASTROPORT Station # Initialise ASTROPORT Station and takes time reading the code
curl -s https://git.p2p.legal/axiom-team/astroport/raw/master/zen/tools/make_G1SSB_secret.sh -o ./installA.sh curl -s https://git.p2p.legal/axiom-team/astroport/raw/master/zen/tools/make_G1SSB_secret.sh -o ./installA.sh
chmod +x ./installA.sh chmod +x ./installA.sh
./installA.sh ./installA.sh
# Trustfull QUICKER Solution !!
curl -s https://git.p2p.legal/axiom-team/astroport/raw/master/zen/tools/make_G1SSB_secret.sh | bash
``` ```
Then... it will download this whole git and activate your station Then... it will download this whole git and activate your station
Creating a "virtual private ipfs swarm" in sync with your ssb friends only. Creating a "virtual private ipfs swarm" in sync with your ssb friends only.

View File

@ -1,4 +1,5 @@
#!/bin/bash #!/bin/bash
{
######################################################################## ########################################################################
MY_PATH="`dirname \"$0\"`" # relative MY_PATH="`dirname \"$0\"`" # relative
MY_PATH="`( cd \"$MY_PATH\" && pwd )`" # absolutized and normalized MY_PATH="`( cd \"$MY_PATH\" && pwd )`" # absolutized and normalized
@ -311,3 +312,4 @@ Send ideas to support@qo-op.com
" "
exit 0 exit 0
}