KasmVNC/builder/scripts/common.sh

16 lines
248 B
Bash
Raw Normal View History

2023-01-24 09:29:05 +01:00
#!/bin/bash
2023-01-18 13:35:36 +01:00
detect_distro() {
if [ -f /etc/centos-release ]; then
DISTRO=centos
elif [ -f /etc/oracle-release ]; then
2023-01-24 09:29:05 +01:00
DISTRO=oracle
2023-01-18 13:35:36 +01:00
elif [ -f /usr/bin/zypper ]; then
DISTRO=opensuse
else
DISTRO=debian
fi
}
detect_distro