1
0
mirror of https://github.com/tommytran732/Linux-Setup-Scripts synced 2024-10-17 18:25:14 -04:00

Add missing -y for hardened_malloc removal on a LEMP stack

Signed-off-by: Tommy <contact@tommytran.io>
This commit is contained in:
Tommy 2024-07-26 07:48:32 -07:00 committed by GitHub
parent 5a6e14ef9f
commit ace87dc0af
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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