mirror of
https://github.com/netdata/netdata.git
synced 2025-04-23 13:00:23 +00:00
fix updating on RPi2+ (#19850)
This commit is contained in:
parent
54fc0901a5
commit
a8c738c7d7
1 changed files with 6 additions and 0 deletions
|
@ -1042,6 +1042,12 @@ update_binpkg() {
|
||||||
cloudlinux|almalinux|centos-stream|rocky|rhel)
|
cloudlinux|almalinux|centos-stream|rocky|rhel)
|
||||||
DISTRO_COMPAT_NAME="centos"
|
DISTRO_COMPAT_NAME="centos"
|
||||||
;;
|
;;
|
||||||
|
raspbian)
|
||||||
|
SYSARCH="$(uname -m)"
|
||||||
|
if [ "$SYSARCH" = "armv7l" ] || [ "$SYSARCH" = "aarch64" ]; then
|
||||||
|
DISTRO_COMPAT_NAME="debian"
|
||||||
|
fi
|
||||||
|
;;
|
||||||
*)
|
*)
|
||||||
DISTRO_COMPAT_NAME="unknown"
|
DISTRO_COMPAT_NAME="unknown"
|
||||||
;;
|
;;
|
||||||
|
|
Loading…
Add table
Reference in a new issue