mirror of
https://github.com/kasmtech/KasmVNC.git
synced 2025-08-19 04:45:56 +02:00
Alpine and Oracle 9 build fixes
This commit is contained in:
@@ -9,6 +9,8 @@ detect_distro() {
|
||||
DISTRO=fedora
|
||||
elif [ -f /usr/bin/zypper ]; then
|
||||
DISTRO=opensuse
|
||||
elif [ -f /etc/alpine-release ]; then
|
||||
DISTRO=alpine
|
||||
else
|
||||
DISTRO=debian
|
||||
fi
|
||||
@@ -22,6 +24,7 @@ install_packages() {
|
||||
oracle) install_cmd="dnf install -y" ;;
|
||||
fedora) install_cmd="dnf install -y" ;;
|
||||
opensuse) install_cmd="zypper install -y" ;;
|
||||
alpine) install_cmd="apk add" ;;
|
||||
*) install_cmd="apt-get update && apt-get install -y"
|
||||
esac
|
||||
|
||||
|
Reference in New Issue
Block a user