mirror of
https://github.com/kasmtech/KasmVNC.git
synced 2025-02-04 04:29:12 +01:00
14 lines
236 B
Bash
14 lines
236 B
Bash
detect_distro() {
|
|
if [ -f /etc/centos-release ]; then
|
|
DISTRO=centos
|
|
elif [ -f /etc/oracle-release ]; then
|
|
DISTRO=oracle7
|
|
elif [ -f /usr/bin/zypper ]; then
|
|
DISTRO=opensuse
|
|
else
|
|
DISTRO=debian
|
|
fi
|
|
}
|
|
|
|
detect_distro
|