remove obsolete armhf checks

This commit is contained in:
aptalca
2024-12-20 12:00:49 -05:00
parent 0e000bcdfc
commit 60bd8e5bd1
2 changed files with 3 additions and 11 deletions
@@ -4,13 +4,10 @@ echo "**** Cloudflared setup script init... ****"
echo "**** Checking cloudflared setup script requirements... ****"
ARCH="$(command arch)"
if [ "${ARCH}" = "x86_64" ]; then
if [ "${ARCH}" = "x86_64" ]; then
ARCH="amd64"
elif [ "${ARCH}" = "aarch64" ]; then
ARCH="arm64"
elif [ "${ARCH}" = "armv7l" ]; then
echo "**** The universal cloudflared mod no longer supports arm32v7/armhf per https://info.linuxserver.io/issues/2023-07-01-armhf/ ****"
exit 0
elif [ "${ARCH}" = "aarch64" ]; then
ARCH="arm64"
else
echo "**** Unsupported Linux architecture ${ARCH} found, exiting... ****"
exit 1