mirror of
https://github.com/raspiblitz/raspiblitz.git
synced 2025-11-19 10:28:58 +01:00
Compare commits
7 Commits
v1.11.4
...
nodejs-upd
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
52bc1c9aa4 | ||
|
|
cfded50575 | ||
|
|
142b5197fb | ||
|
|
76267f812b | ||
|
|
61766d8bea | ||
|
|
b20e9f0bab | ||
|
|
5c2bdcb954 |
@@ -34,7 +34,7 @@
|
|||||||
## Ready made images for arm64-rpi
|
## Ready made images for arm64-rpi
|
||||||
* The images are built in GitHub actions
|
* The images are built in GitHub actions
|
||||||
* To see the downloadable artifacts will need to log in to GitHub
|
* To see the downloadable artifacts will need to log in to GitHub
|
||||||
* Find the latest successful build of the default amd64 image:
|
* Find the latest successful build of the default arm64 image:
|
||||||
https://github.com/raspiblitz/raspiblitz/actions/workflows/arm64-rpi-lean-image.yml?query=workflow%3Aarm64-rpi-lean-image-build+is%3Asuccess+branch%3Adev
|
https://github.com/raspiblitz/raspiblitz/actions/workflows/arm64-rpi-lean-image.yml?query=workflow%3Aarm64-rpi-lean-image-build+is%3Asuccess+branch%3Adev
|
||||||
* unpack the artifact to the same directory
|
* unpack the artifact to the same directory
|
||||||
```
|
```
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
variable "iso_name" { default = "debian-12.8.0-amd64-netinst.iso" }
|
variable "iso_name" { default = "debian-12.9.0-amd64-netinst.iso" }
|
||||||
variable "iso_checksum" { default = "04396d12b0f377958a070c38a923c227832fa3b3e18ddc013936ecf492e9fbb3" }
|
variable "iso_checksum" { default = "1257373c706d8c07e6917942736a865dfff557d21d76ea3040bb1039eb72a054" }
|
||||||
|
|
||||||
variable "pack" { default = "lean" }
|
variable "pack" { default = "lean" }
|
||||||
variable "github_user" { default = "raspiblitz" }
|
variable "github_user" { default = "raspiblitz" }
|
||||||
|
|||||||
@@ -721,7 +721,7 @@ do
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
###############################
|
###############################
|
||||||
# RAID data check (BRTFS)
|
# RAID data check (BTRFS)
|
||||||
###############################
|
###############################
|
||||||
# see https://github.com/rootzoll/raspiblitz/issues/360#issuecomment-467698260
|
# see https://github.com/rootzoll/raspiblitz/issues/360#issuecomment-467698260
|
||||||
|
|
||||||
@@ -729,7 +729,7 @@ do
|
|||||||
recheckRAID=$((($counter % 3600)+1))
|
recheckRAID=$((($counter % 3600)+1))
|
||||||
if [ ${recheckRAID} -eq 1 ]; then
|
if [ ${recheckRAID} -eq 1 ]; then
|
||||||
|
|
||||||
# check if BTRTFS raid is active & scrub
|
# check if BTRFS raid is active & scrub
|
||||||
logger -p info "background.sh - RAID data check"
|
logger -p info "background.sh - RAID data check"
|
||||||
source <(/home/admin/config.scripts/blitz.datadrive.sh status)
|
source <(/home/admin/config.scripts/blitz.datadrive.sh status)
|
||||||
if [ "${isBTRFS}" == "1" ] && [ "${isRaid}" == "1" ]; then
|
if [ "${isBTRFS}" == "1" ] && [ "${isRaid}" == "1" ]; then
|
||||||
|
|||||||
@@ -288,7 +288,7 @@ if [ "${mode}" = "tested" ] || [ "${mode}" = "reckless" ] || [ "${mode}" = "cust
|
|||||||
tar -xvf ${binaryName}
|
tar -xvf ${binaryName}
|
||||||
sudo install -m 0755 -o root -g root -t /usr/local/bin/ bitcoin-${bitcoinVersion}/bin/*
|
sudo install -m 0755 -o root -g root -t /usr/local/bin/ bitcoin-${bitcoinVersion}/bin/*
|
||||||
sleep 3
|
sleep 3
|
||||||
if ! sudo /usr/local/bin/bitcoind --version | grep "${bitcoinVersion}"; then
|
if ! sudo -u bitcoin /usr/local/bin/bitcoind --version | grep "${bitcoinVersion}"; then
|
||||||
echo
|
echo
|
||||||
echo "# BUILD FAILED --> Was not able to install bitcoind version(${bitcoinVersion})"
|
echo "# BUILD FAILED --> Was not able to install bitcoind version(${bitcoinVersion})"
|
||||||
exit 1
|
exit 1
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
# follows https://github.com/nodesource/distributions/blob/master/README.md#manual-installation
|
# follows https://github.com/nodesource/distributions/blob/master/README.md#manual-installation
|
||||||
|
|
||||||
VERSION="20"
|
VERSION="22"
|
||||||
|
|
||||||
# command info
|
# command info
|
||||||
if [ $# -eq 0 ] || [ "$1" = "-h" ] || [ "$1" = "-help" ]; then
|
if [ $# -eq 0 ] || [ "$1" = "-h" ] || [ "$1" = "-help" ]; then
|
||||||
|
|||||||
@@ -11,6 +11,12 @@ fi
|
|||||||
# check and load raspiblitz config to know which network is running
|
# check and load raspiblitz config to know which network is running
|
||||||
source /mnt/hdd/raspiblitz.conf
|
source /mnt/hdd/raspiblitz.conf
|
||||||
|
|
||||||
|
# check and install qrencode if not present
|
||||||
|
if [ $(dpkg-query -l | grep "ii qrencode" | wc -l) = 0 ]; then
|
||||||
|
echo "# Installing qrencode..."
|
||||||
|
sudo apt-get install -y qrencode >/dev/null 2>&1
|
||||||
|
fi
|
||||||
|
|
||||||
echo "# Running: 'cl-plugin.clnrest.sh $*'"
|
echo "# Running: 'cl-plugin.clnrest.sh $*'"
|
||||||
|
|
||||||
source <(/home/admin/config.scripts/network.aliases.sh getvars cl $2)
|
source <(/home/admin/config.scripts/network.aliases.sh getvars cl $2)
|
||||||
|
|||||||
Reference in New Issue
Block a user