diff options
| author | atarwn <102351430+atarwn@users.noreply.github.com> | 2025-02-24 11:22:34 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-02-24 11:22:34 +0300 |
| commit | 7a3ee69a7fc9489672e50338e1f85a1115c73a80 (patch) | |
| tree | 94fcfd9effbdf1fb0676ef1930837d82b86482c5 /install.sh | |
| parent | 664bd9b596f068f073e2a3963843bcfc68b65dba (diff) | |
Virtuozzo linux support (#2668)
Diffstat (limited to 'install.sh')
| -rw-r--r-- | install.sh | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -90,6 +90,10 @@ elif [[ "${release}" == "ol" ]]; then if [[ ${os_version} -lt 8 ]]; then echo -e "${red} Please use Oracle Linux 8 or higher ${plain}\n" && exit 1 fi +elif [[ "${release}" == "virtuozzo" ]]; then + if [[ ${os_version} -lt 8 ]]; then + echo -e "${red} Please use Virtuozzo Linux 8 or higher ${plain}\n" && exit 1 + fi else echo -e "${red}Your operating system is not supported by this script.${plain}\n" echo "Please ensure you are using one of the following supported operating systems:" @@ -107,6 +111,7 @@ else echo "- Oracle Linux 8+" echo "- OpenSUSE Tumbleweed" echo "- Amazon Linux 2023" + echo "- Virtuozzo Linux 8+" exit 1 fi @@ -118,7 +123,7 @@ install_base() { centos | almalinux | rocky | ol) yum -y update && yum install -y -q wget curl tar tzdata ;; - fedora | amzn) + fedora | amzn | virtuozzo) dnf -y update && dnf install -y -q wget curl tar tzdata ;; arch | manjaro | parch) |
