mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2026-03-09 14:34:57 +00:00
ensure_dependencies() and is_package_installed() used dpkg-query and apt which don't exist on Alpine Linux. When alpine-install.func sources tools.func, these functions would fail with 'exit code 980' errors. Added Alpine detection (/etc/alpine-release) to both functions: - ensure_dependencies: uses apk info/apk add on Alpine - is_package_installed: uses apk info -e on Alpine Fixes #12698