mirror of
https://github.com/kasmtech/KasmVNC.git
synced 2024-11-22 16:13:13 +01:00
16 lines
248 B
Bash
16 lines
248 B
Bash
#!/bin/bash
|
|
|
|
detect_distro() {
|
|
if [ -f /etc/centos-release ]; then
|
|
DISTRO=centos
|
|
elif [ -f /etc/oracle-release ]; then
|
|
DISTRO=oracle
|
|
elif [ -f /usr/bin/zypper ]; then
|
|
DISTRO=opensuse
|
|
else
|
|
DISTRO=debian
|
|
fi
|
|
}
|
|
|
|
detect_distro
|