mirror of
https://github.com/raspiblitz/raspiblitz.git
synced 2025-11-18 18:07:45 +01:00
Compare commits
5 Commits
check-for-
...
nodejs-upd
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
52bc1c9aa4 | ||
|
|
cfded50575 | ||
|
|
142b5197fb | ||
|
|
76267f812b | ||
|
|
61766d8bea |
@@ -34,7 +34,7 @@
|
||||
## Ready made images for arm64-rpi
|
||||
* The images are built in GitHub actions
|
||||
* 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
|
||||
* unpack the artifact to the same directory
|
||||
```
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
variable "iso_name" { default = "debian-12.8.0-amd64-netinst.iso" }
|
||||
variable "iso_checksum" { default = "04396d12b0f377958a070c38a923c227832fa3b3e18ddc013936ecf492e9fbb3" }
|
||||
variable "iso_name" { default = "debian-12.9.0-amd64-netinst.iso" }
|
||||
variable "iso_checksum" { default = "1257373c706d8c07e6917942736a865dfff557d21d76ea3040bb1039eb72a054" }
|
||||
|
||||
variable "pack" { default = "lean" }
|
||||
variable "github_user" { default = "raspiblitz" }
|
||||
|
||||
@@ -721,7 +721,7 @@ do
|
||||
fi
|
||||
|
||||
###############################
|
||||
# RAID data check (BRTFS)
|
||||
# RAID data check (BTRFS)
|
||||
###############################
|
||||
# see https://github.com/rootzoll/raspiblitz/issues/360#issuecomment-467698260
|
||||
|
||||
@@ -729,7 +729,7 @@ do
|
||||
recheckRAID=$((($counter % 3600)+1))
|
||||
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"
|
||||
source <(/home/admin/config.scripts/blitz.datadrive.sh status)
|
||||
if [ "${isBTRFS}" == "1" ] && [ "${isRaid}" == "1" ]; then
|
||||
|
||||
@@ -288,7 +288,7 @@ if [ "${mode}" = "tested" ] || [ "${mode}" = "reckless" ] || [ "${mode}" = "cust
|
||||
tar -xvf ${binaryName}
|
||||
sudo install -m 0755 -o root -g root -t /usr/local/bin/ bitcoin-${bitcoinVersion}/bin/*
|
||||
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 "# BUILD FAILED --> Was not able to install bitcoind version(${bitcoinVersion})"
|
||||
exit 1
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
# follows https://github.com/nodesource/distributions/blob/master/README.md#manual-installation
|
||||
|
||||
VERSION="20"
|
||||
VERSION="22"
|
||||
|
||||
# command info
|
||||
if [ $# -eq 0 ] || [ "$1" = "-h" ] || [ "$1" = "-help" ]; then
|
||||
|
||||
Reference in New Issue
Block a user