mirror of
https://github.com/Retropex/raspiblitz.git
synced 2025-05-12 11:10:48 +02:00
fix bad substitutions for redis #2828
This commit is contained in:
parent
81621071bd
commit
ba4a0ed801
@ -68,9 +68,9 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# raise high focus on lightning channels next 1 hour
|
# raise high focus on lightning channels next 1 hour
|
||||||
/home/admin/_cache.sh focus ln_${LNTYPE}_${$CHAIN}_channels_active 0 3600
|
/home/admin/_cache.sh focus ln_${LNTYPE}_${CHAIN}_channels_active 0 3600
|
||||||
/home/admin/_cache.sh focus ln_${LNTYPE}_${$CHAIN}_channels_inactive 0 3600
|
/home/admin/_cache.sh focus ln_${LNTYPE}_${CHAIN}_channels_inactive 0 3600
|
||||||
/home/admin/_cache.sh focus ln_${LNTYPE}_${$CHAIN}_channels_total 0 3600
|
/home/admin/_cache.sh focus ln_${LNTYPE}_${CHAIN}_channels_total 0 3600
|
||||||
|
|
||||||
echo "#####################################"
|
echo "#####################################"
|
||||||
echo "# Closing All Channels (EXPERIMENTAL)"
|
echo "# Closing All Channels (EXPERIMENTAL)"
|
||||||
|
@ -17,7 +17,7 @@ fi
|
|||||||
source <(/home/admin/config.scripts/network.aliases.sh getvars $1 $2)
|
source <(/home/admin/config.scripts/network.aliases.sh getvars $1 $2)
|
||||||
|
|
||||||
# raise high focus on lightning peers next 5min
|
# raise high focus on lightning peers next 5min
|
||||||
/home/admin/_cache.sh focus ln_${LNTYPE}_${$CHAIN}_peers 0 300
|
/home/admin/_cache.sh focus ln_${LNTYPE}_${CHAIN}_peers 0 300
|
||||||
|
|
||||||
# let user enter a <pubkey>@host
|
# let user enter a <pubkey>@host
|
||||||
l1="Enter the node pubkey address with host information:"
|
l1="Enter the node pubkey address with host information:"
|
||||||
|
@ -127,7 +127,7 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# raise high focus on lightning channel balance next 5min
|
# raise high focus on lightning channel balance next 5min
|
||||||
/home/admin/_cache.sh focus ln_${LNTYPE}_${$CHAIN}_channels_balance 0 300
|
/home/admin/_cache.sh focus ln_${LNTYPE}_${CHAIN}_channels_balance 0 300
|
||||||
|
|
||||||
echo
|
echo
|
||||||
echo "********************"
|
echo "********************"
|
||||||
|
@ -80,9 +80,9 @@ if [ ${numConnectedPeers} -eq 0 ]; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# raise high focus on lightning channels next 1 hour
|
# raise high focus on lightning channels next 1 hour
|
||||||
/home/admin/_cache.sh focus ln_${LNTYPE}_${$CHAIN}_channels_pending 0 3600
|
/home/admin/_cache.sh focus ln_${LNTYPE}_${CHAIN}_channels_pending 0 3600
|
||||||
/home/admin/_cache.sh focus ln_${LNTYPE}_${$CHAIN}_channels_total 0 3600
|
/home/admin/_cache.sh focus ln_${LNTYPE}_${CHAIN}_channels_total 0 3600
|
||||||
/home/admin/_cache.sh focus ln_${LNTYPE}_${$CHAIN}_channels_active 0 3600
|
/home/admin/_cache.sh focus ln_${LNTYPE}_${CHAIN}_channels_active 0 3600
|
||||||
|
|
||||||
# let user pick a peer to open a channels with
|
# let user pick a peer to open a channels with
|
||||||
OPTIONS=()
|
OPTIONS=()
|
||||||
|
@ -105,7 +105,7 @@ elif [ $LNTYPE = lnd ];then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# raise high focus on lightning channel balance next 5min
|
# raise high focus on lightning channel balance next 5min
|
||||||
/home/admin/_cache.sh focus ln_${LNTYPE}_${$CHAIN}_channels_balance 0 300
|
/home/admin/_cache.sh focus ln_${LNTYPE}_${CHAIN}_channels_balance 0 300
|
||||||
|
|
||||||
# info output
|
# info output
|
||||||
clear
|
clear
|
||||||
|
Loading…
Reference in New Issue
Block a user