0
0
Fork 0
mirror of https://github.com/netdata/netdata.git synced 2025-04-13 09:11:50 +00:00

fix updating on RPi2+ ()

This commit is contained in:
Ilya Mashchenko 2025-03-13 14:36:38 +02:00 committed by GitHub
parent 54fc0901a5
commit a8c738c7d7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1042,6 +1042,12 @@ update_binpkg() {
cloudlinux|almalinux|centos-stream|rocky|rhel)
DISTRO_COMPAT_NAME="centos"
;;
raspbian)
SYSARCH="$(uname -m)"
if [ "$SYSARCH" = "armv7l" ] || [ "$SYSARCH" = "aarch64" ]; then
DISTRO_COMPAT_NAME="debian"
fi
;;
*)
DISTRO_COMPAT_NAME="unknown"
;;