mirror of
https://github.com/nahuhh/basicswap-bash.git
synced 2024-12-22 11:39:21 +00:00
support password protected installs
This commit is contained in:
parent
d3b442b7f7
commit
96fad3fcdd
5 changed files with 145 additions and 0 deletions
29
bsx-addcoin
29
bsx-addcoin
|
@ -1,4 +1,33 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Colors
|
||||||
|
red="echo -e -n \e[31;1m"
|
||||||
|
green="echo -e -n \e[32;1m"
|
||||||
|
nocolor="echo -e -n \e[0m"
|
||||||
|
|
||||||
|
echo -e "My BasicSwapDEX is:\n[1] Password protected\n[2] NOT password protected\n"
|
||||||
|
until [[ "$l" =~ ^[12]$ ]]; do
|
||||||
|
read -p 'Select an option [1|2]: ' l
|
||||||
|
case $l in
|
||||||
|
1)
|
||||||
|
until [[ $pass1 ]] && [[ $pass1 == $pass2 ]]; do
|
||||||
|
read -sp 'Enter your BasicSwap password: ' pass1
|
||||||
|
read -sp $'\nRe-enter your BasicSwap password: ' pass2
|
||||||
|
if [[ $pass1 == $pass2 ]]; then
|
||||||
|
export WALLET_ENCRYPTION_PWD=$pass1
|
||||||
|
else
|
||||||
|
$red"\nThe passwords entered don't match. Try again\n\n"; $nocolor
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
;;
|
||||||
|
2)
|
||||||
|
$nocolor"\nProceeding without a password\n"
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
$red"You must answer 1 or 2\n"; $nocolor
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
export SWAP_DATADIR=$HOME/coinswaps
|
export SWAP_DATADIR=$HOME/coinswaps
|
||||||
. $SWAP_DATADIR/venv/bin/activate && python -V
|
. $SWAP_DATADIR/venv/bin/activate && python -V
|
||||||
/usr/local/bin/bsx/addcoin.sh
|
/usr/local/bin/bsx/addcoin.sh
|
||||||
|
|
|
@ -1,4 +1,33 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Colors
|
||||||
|
red="echo -e -n \e[31;1m"
|
||||||
|
green="echo -e -n \e[32;1m"
|
||||||
|
nocolor="echo -e -n \e[0m"
|
||||||
|
|
||||||
|
echo -e "My BasicSwapDEX is:\n[1] Password protected\n[2] NOT password protected\n"
|
||||||
|
until [[ "$l" =~ ^[12]$ ]]; do
|
||||||
|
read -p 'Select an option [1|2]: ' l
|
||||||
|
case $l in
|
||||||
|
1)
|
||||||
|
until [[ $pass1 ]] && [[ $pass1 == $pass2 ]]; do
|
||||||
|
read -sp 'Enter your BasicSwap password: ' pass1
|
||||||
|
read -sp $'\nRe-enter your BasicSwap password: ' pass2
|
||||||
|
if [[ $pass1 == $pass2 ]]; then
|
||||||
|
export WALLET_ENCRYPTION_PWD=$pass1
|
||||||
|
else
|
||||||
|
$red"\nThe passwords entered don't match. Try again\n\n"; $nocolor
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
;;
|
||||||
|
2)
|
||||||
|
$nocolor"\nProceeding without a password\n"
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
$red"You must answer 1 or 2\n"; $nocolor
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
export SWAP_DATADIR=$HOME/coinswaps
|
export SWAP_DATADIR=$HOME/coinswaps
|
||||||
. $SWAP_DATADIR/venv/bin/activate && python -V
|
. $SWAP_DATADIR/venv/bin/activate && python -V
|
||||||
/usr/local/bin/bsx/disabletor.sh
|
/usr/local/bin/bsx/disabletor.sh
|
||||||
|
|
|
@ -1,4 +1,33 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Colors
|
||||||
|
red="echo -e -n \e[31;1m"
|
||||||
|
green="echo -e -n \e[32;1m"
|
||||||
|
nocolor="echo -e -n \e[0m"
|
||||||
|
|
||||||
|
echo -e "My BasicSwapDEX is:\n[1] Password protected\n[2] NOT password protected\n"
|
||||||
|
until [[ "$l" =~ ^[12]$ ]]; do
|
||||||
|
read -p 'Select an option [1|2]: ' l
|
||||||
|
case $l in
|
||||||
|
1)
|
||||||
|
until [[ $pass1 ]] && [[ $pass1 == $pass2 ]]; do
|
||||||
|
read -sp 'Enter your BasicSwap password: ' pass1
|
||||||
|
read -sp $'\nRe-enter your BasicSwap password: ' pass2
|
||||||
|
if [[ $pass1 == $pass2 ]]; then
|
||||||
|
export WALLET_ENCRYPTION_PWD=$pass1
|
||||||
|
else
|
||||||
|
$red"\nThe passwords entered don't match. Try again\n\n"; $nocolor
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
;;
|
||||||
|
2)
|
||||||
|
$nocolor"\nProceeding without a password\n"
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
$red"You must answer 1 or 2\n"; $nocolor
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
export SWAP_DATADIR=$HOME/coinswaps
|
export SWAP_DATADIR=$HOME/coinswaps
|
||||||
. $SWAP_DATADIR/venv/bin/activate && python -V
|
. $SWAP_DATADIR/venv/bin/activate && python -V
|
||||||
/usr/local/bin/bsx/enabletor.sh
|
/usr/local/bin/bsx/enabletor.sh
|
||||||
|
|
|
@ -1,4 +1,33 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Colors
|
||||||
|
red="echo -e -n \e[31;1m"
|
||||||
|
green="echo -e -n \e[32;1m"
|
||||||
|
nocolor="echo -e -n \e[0m"
|
||||||
|
|
||||||
|
echo -e "My BasicSwapDEX is:\n[1] Password protected\n[2] NOT password protected\n"
|
||||||
|
until [[ "$l" =~ ^[12]$ ]]; do
|
||||||
|
read -p 'Select an option [1|2]: ' l
|
||||||
|
case $l in
|
||||||
|
1)
|
||||||
|
until [[ $pass1 ]] && [[ $pass1 == $pass2 ]]; do
|
||||||
|
read -sp 'Enter your BasicSwap password: ' pass1
|
||||||
|
read -sp $'\nRe-enter your BasicSwap password: ' pass2
|
||||||
|
if [[ $pass1 == $pass2 ]]; then
|
||||||
|
export WALLET_ENCRYPTION_PWD=$pass1
|
||||||
|
else
|
||||||
|
$red"\nThe passwords entered don't match. Try again\n\n"; $nocolor
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
;;
|
||||||
|
2)
|
||||||
|
$nocolor"\nProceeding without a password\n"
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
$red"You must answer 1 or 2\n"; $nocolor
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
export SWAP_DATADIR=$HOME/coinswaps
|
export SWAP_DATADIR=$HOME/coinswaps
|
||||||
. $SWAP_DATADIR/venv/bin/activate && python -V
|
. $SWAP_DATADIR/venv/bin/activate && python -V
|
||||||
/usr/local/bin/bsx/removecoin.sh
|
/usr/local/bin/bsx/removecoin.sh
|
||||||
|
|
|
@ -1,4 +1,33 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Colors
|
||||||
|
red="echo -e -n \e[31;1m"
|
||||||
|
green="echo -e -n \e[32;1m"
|
||||||
|
nocolor="echo -e -n \e[0m"
|
||||||
|
|
||||||
|
echo -e "My BasicSwapDEX is:\n[1] Password protected\n[2] NOT password protected\n"
|
||||||
|
until [[ "$l" =~ ^[12]$ ]]; do
|
||||||
|
read -p 'Select an option [1|2]: ' l
|
||||||
|
case $l in
|
||||||
|
1)
|
||||||
|
until [[ $pass1 ]] && [[ $pass1 == $pass2 ]]; do
|
||||||
|
read -sp 'Enter your BasicSwap password: ' pass1
|
||||||
|
read -sp $'\nRe-enter your BasicSwap password: ' pass2
|
||||||
|
if [[ $pass1 == $pass2 ]]; then
|
||||||
|
export WALLET_ENCRYPTION_PWD=$pass1
|
||||||
|
else
|
||||||
|
$red"\nThe passwords entered don't match. Try again\n\n"; $nocolor
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
;;
|
||||||
|
2)
|
||||||
|
$nocolor"\nProceeding without a password\n"
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
$red"You must answer 1 or 2\n"; $nocolor
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
export SWAP_DATADIR=$HOME/coinswaps
|
export SWAP_DATADIR=$HOME/coinswaps
|
||||||
. $SWAP_DATADIR/venv/bin/activate && python -V
|
. $SWAP_DATADIR/venv/bin/activate && python -V
|
||||||
/usr/local/bin/bsx/upgradecoins.sh
|
/usr/local/bin/bsx/upgradecoins.sh
|
||||||
|
|
Loading…
Reference in a new issue