Compare commits

...

5 Commits

Author SHA1 Message Date
openoms
52bc1c9aa4 nodejs update to 22 2025-02-23 11:52:38 +01:00
cdemkos
cfded50575 replace amd with arm in ci/README.md (#4952) 2025-02-04 15:00:57 +01:00
frennkie
142b5197fb Switch to bitcoin user for version verification (#4942)
We normally run bitcoind as user bitcoin.
Running it here as root could potentially at some point cause issues (e.g. if files are created and the ownership is then off).
2025-02-03 14:12:41 +01:00
frennkie
76267f812b Update _background.sh (#4941)
Fix two typoe/switch characters in comments
2025-02-03 10:52:23 +01:00
openoms
61766d8bea amd64 base image update to debian-12.9.0-amd64-netinst.iso (#4928) 2025-01-18 11:41:05 +01:00
5 changed files with 7 additions and 7 deletions

View File

@@ -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
```

View File

@@ -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" }

View File

@@ -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

View File

@@ -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

View File

@@ -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