mirror of
https://github.com/raspiblitz/raspiblitz.git
synced 2025-04-03 09:28:22 +02:00
_commands: clarify lit aliases
This commit is contained in:
parent
d432f86ff7
commit
7cb2e26433
@ -225,7 +225,8 @@ function lit() {
|
||||
if [ $(grep -c "lit=on" < /mnt/hdd/raspiblitz.conf) -eq 1 ]; then
|
||||
echo "# switching to the lit user with the command: 'sudo su - lit'"
|
||||
echo "# use command 'exit' and then 'raspiblitz' to return to menu"
|
||||
echo "# use the commands: 'lncli', 'loop', 'pool' and 'frcli'"
|
||||
echo "# see the prefilled parameters with 'alias'"
|
||||
echo "# use the commands: 'lncli', 'lit-frcli', 'lit-loop', 'lit-pool'"
|
||||
sudo su - lit
|
||||
echo "# use command 'raspiblitz' to return to menu"
|
||||
else
|
||||
@ -234,6 +235,21 @@ function lit() {
|
||||
fi
|
||||
}
|
||||
|
||||
# aliases for lit
|
||||
# switch to the pool user for the Pool Service
|
||||
if [ -f "/mnt/hdd/raspiblitz.conf" ] && [ $(grep -c "lit=on" < /mnt/hdd/raspiblitz.conf) -gt 0 ]; then
|
||||
source /mnt/hdd/raspiblitz.conf
|
||||
alias lit-frcli="sudo -u lit frcli --rpcserver=localhost:8443 \
|
||||
--tlscertpath=/home/lit/.lit/tls.cert \
|
||||
--macaroonpath=/home/lit/.faraday/${chain}net/faraday.macaroon"
|
||||
alias lit-loop="sudo -u lit loop --rpcserver=localhost:8443 \\
|
||||
--tlscertpath=/home/lit/.lit/tls.cert \\
|
||||
--macaroonpath=/home/lit/.loop/${chain}net/loop.macaroon"
|
||||
alias lit-pool="sudo -u lit pool --rpcserver=localhost:8443 \
|
||||
--tlscertpath=/home/lit/.lit/tls.cert \
|
||||
--macaroonpath=/home/lit/.pool/${chain}net/pool.macaroon"
|
||||
fi
|
||||
|
||||
# command: loop
|
||||
# switch to the loop user for the Lightning Loop Service
|
||||
function loop() {
|
||||
@ -264,21 +280,6 @@ function pool() {
|
||||
fi
|
||||
}
|
||||
|
||||
# aliases for lit
|
||||
# switch to the pool user for the Pool Service
|
||||
if [ -f "/mnt/hdd/raspiblitz.conf" ] && [ $(grep -c "lit=on" < /mnt/hdd/raspiblitz.conf) -gt 0 ]; then
|
||||
source /mnt/hdd/raspiblitz.conf
|
||||
alias lit-frcli="sudo -u lit frcli --rpcserver=localhost:8443 \
|
||||
--tlscertpath=/home/lit/.lit/tls.cert \
|
||||
--macaroonpath=/home/lit/.faraday/${chain}net/faraday.macaroon"
|
||||
alias lit-loop="sudo -u lit loop --rpcserver=localhost:8443 \\
|
||||
--tlscertpath=/home/lit/.lit/tls.cert \\
|
||||
--macaroonpath=/home/lit/.loop/${chain}net/loop.macaroon"
|
||||
alias lit-pool="sudo -u lit pool --rpcserver=localhost:8443 \
|
||||
--tlscertpath=/home/lit/.lit/tls.cert \
|
||||
--macaroonpath=/home/lit/.pool/${chain}net/pool.macaroon"
|
||||
fi
|
||||
|
||||
# command: gettx
|
||||
# retrieve transaction from mempool or blockchain and print as JSON
|
||||
# $ gettx "f4184fc596403b9d638783cf57adfe4c75c605f6356fbc91338530e9831e9e16"
|
||||
|
Loading…
x
Reference in New Issue
Block a user