From 1f1a10e7f690ffcf6bcfd04daafe2e9fba6cdcf3 Mon Sep 17 00:00:00 2001 From: qo-op Date: Sun, 6 Dec 2020 02:08:16 +0100 Subject: [PATCH] Add $YOU $IPFSNODEID $G1PUB to ~/.bashrc --- .install/update_bashrc.sh | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/.install/update_bashrc.sh b/.install/update_bashrc.sh index c541659..0d75850 100755 --- a/.install/update_bashrc.sh +++ b/.install/update_bashrc.sh @@ -8,20 +8,18 @@ # Add $YOU $IPFSNODEID $G1PUB to ~/.bashrc source ~/.bashrc -[[ $YOU != "" && $IPFSNODEID != "" && $G1PUB != "" ]] && echo "bashrc already updated" && exit 1 - -echo "### ASTROPORT IDENTITY ###" >> ~/.bashrc +[[ $YOU != "" && $IPFSNODEID != "" && $G1PUB != "" ]] && er+="bashrc already updated" export YOU=$(ps auxf --sort=+utime | grep -w ipfs | grep -v -E 'color=auto|grep' | tail -n 1 | cut -d " " -f 1) || er+=" ipfs daemon not running" -[[ $er == "" ]] && echo "export YOU=$YOU" >> ~/.bashrc - -# IPFS layer ID is $YOU Swarm peer ID export IPFSNODEID=$(ipfs id -f='\n') || er+=" ipfs id problem" -[[ $er == "" ]] && echo "export IPFSNODEID=$IPFSNODEID" >> ~/.bashrc +export G1PUB=$(cat ~/.zen/secret.dunikey | grep 'pub:' | cut -d ' ' -f 2) || er+=" ~/.zen/secret.dunikey not found" -# G1PUB is $YOU Zen Wallet (#libremoney) -export G1PUB=$(cat ~/.zen/secret.dunikey | grep 'pub:' | cut -d ' ' -f 2) || er+=" ~/.zen/secret.dunikey problem" -[[ $er == "" ]] && echo "export G1PUB=$G1PUB" >> ~/.bashrc +[[ $er != "" ]] && echo "$er" && exit 1 +echo "### ASTROPORT IDENTITY ###" >> ~/.bashrc +echo "export YOU=$YOU" >> ~/.bashrc +echo "export G1PUB=$G1PUB" >> ~/.bashrc +echo "export IPFSNODEID=$IPFSNODEID" >> ~/.bashrc source ~/.bashrc + exit 0