From ace87dc0af1e0741c363354baab94f431ccff55b Mon Sep 17 00:00:00 2001 From: Tommy Date: Fri, 26 Jul 2024 07:48:32 -0700 Subject: [PATCH] Add missing -y for hardened_malloc removal on a LEMP stack Signed-off-by: Tommy --- sample-scripts/RHEL-9-LEMP.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sample-scripts/RHEL-9-LEMP.sh b/sample-scripts/RHEL-9-LEMP.sh index ea2131c..855ddaf 100644 --- a/sample-scripts/RHEL-9-LEMP.sh +++ b/sample-scripts/RHEL-9-LEMP.sh @@ -27,7 +27,7 @@ unpriv(){ } # Remove hardened_malloc (It breaks php-fpm) -sudo dnf remove hardened_malloc +sudo dnf remove -y hardened_malloc # Install NGINX unpriv curl -s https://raw.githubusercontent.com/TommyTran732/Linux-Setup-Scripts/main/etc/yum.repos.d/nginx.repo | sudo tee /etc/yum.repos.d/nginx.repo > /dev/null