mirror of
https://github.com/rootzoll/raspiblitz.git
synced 2025-03-01 00:59:23 +01:00
Merge pull request #3865 from rootzoll/suez-fix
fix: use the absolute path of suez
This commit is contained in:
commit
0cd4c8a8fe
3 changed files with 4 additions and 4 deletions
|
@ -94,7 +94,7 @@ case $CHOICE in
|
||||||
fi
|
fi
|
||||||
cd /home/bitcoin/suez || exit 1
|
cd /home/bitcoin/suez || exit 1
|
||||||
echo
|
echo
|
||||||
sudo -u bitcoin poetry run ./suez --client=c-lightning --client-args=--conf=${CLCONF}
|
sudo -u bitcoin poetry run /home/bitcoin/suez/suez --client=c-lightning --client-args=--conf=${CLCONF}
|
||||||
echo
|
echo
|
||||||
echo "Press ENTER to return to main menu."
|
echo "Press ENTER to return to main menu."
|
||||||
read key
|
read key
|
||||||
|
|
|
@ -118,7 +118,7 @@ case $CHOICE in
|
||||||
/home/admin/config.scripts/bonus.suez.sh on
|
/home/admin/config.scripts/bonus.suez.sh on
|
||||||
fi
|
fi
|
||||||
cd /home/bitcoin/suez || exit 1
|
cd /home/bitcoin/suez || exit 1
|
||||||
sudo -u bitcoin poetry run ./suez \
|
sudo -u bitcoin poetry run /home/bitcoin/suez/suez \
|
||||||
--client-args=-n=${CHAIN} \
|
--client-args=-n=${CHAIN} \
|
||||||
--client-args=--rpcserver=localhost:1${L2rpcportmod}009
|
--client-args=--rpcserver=localhost:1${L2rpcportmod}009
|
||||||
echo
|
echo
|
||||||
|
|
|
@ -579,10 +579,10 @@ function suez() {
|
||||||
clear
|
clear
|
||||||
echo "# Showing the channels of ${lightning} ${chain}net - consider reducing the font size (press CTRL- or CMD-)"
|
echo "# Showing the channels of ${lightning} ${chain}net - consider reducing the font size (press CTRL- or CMD-)"
|
||||||
if [ ${lightning} = cl ]; then
|
if [ ${lightning} = cl ]; then
|
||||||
sudo -u bitcoin poetry run ./suez \
|
sudo -u bitcoin poetry run /home/bitcoin/suez/suez \
|
||||||
--client=c-lightning --client-args=--conf=${CLCONF}
|
--client=c-lightning --client-args=--conf=${CLCONF}
|
||||||
elif [ ${lightning} = lnd ]; then
|
elif [ ${lightning} = lnd ]; then
|
||||||
sudo -u bitcoin poetry run ./suez \
|
sudo -u bitcoin poetry run /home/bitcoin/suez/suez \
|
||||||
--client-args=-n=${CHAIN} \
|
--client-args=-n=${CHAIN} \
|
||||||
--client-args=--rpcserver=localhost:1${L2rpcportmod}009
|
--client-args=--rpcserver=localhost:1${L2rpcportmod}009
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Add table
Reference in a new issue