From 8aea41eb9c8445a48712a13072987eb9f2563fed Mon Sep 17 00:00:00 2001 From: nemp1yy Date: Sat, 9 Aug 2025 17:12:09 +0300 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=20LibreOffice=20&=20Redis?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- install.sh | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/install.sh b/install.sh index 827c68c..8f6724b 100644 --- a/install.sh +++ b/install.sh @@ -24,7 +24,8 @@ if echo "$DISTRO $FAMILY" | grep -qi "rhel\|fedora\|centos"; then dnf update -y dnf install -y nginx mariadb-server mariadb php php-fpm php-mysqlnd \ php-curl php-gd php-mbstring php-xml php-zip php-opcache \ - php-intl php-bcmath php-json + php-intl php-bcmath php-json \ + redis-server libreoffice systemctl enable --now nginx mariadb php-fpm @@ -32,9 +33,10 @@ elif echo "$DISTRO $FAMILY" | grep -qi "debian"; then apt update -y apt install -y nginx mariadb-server php-fpm php-mysql \ php-curl php-gd php-mbstring php-xml php-zip php-opcache \ - php-intl php-bcmath php-json + php-intl php-bcmath php-json \ + redis-server libreoffice - systemctl enable --now nginx mariadb php7.4-fpm 2>/dev/null || true + systemctl enable --now nginx mariadb php7.4-fpm redis 2>/dev/null || true else echo "Скрипт не поддерживает этот дистрибутив" exit 1