From deb9aea66838f2846084ad7fe9b3b3946c0858fa Mon Sep 17 00:00:00 2001 From: Jonathan Lelievre Date: Tue, 5 Dec 2023 15:43:29 +0100 Subject: [PATCH] Remove weird chmod for apache --- .github/workflows/sanity/setup-apache.sh | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.github/workflows/sanity/setup-apache.sh b/.github/workflows/sanity/setup-apache.sh index 6ee5459d8a2b7..ea8fabbdb1c21 100644 --- a/.github/workflows/sanity/setup-apache.sh +++ b/.github/workflows/sanity/setup-apache.sh @@ -19,8 +19,3 @@ a2dismod mpm_event cp -f $WORKSPACE/.github/workflows/sanity/apache-vhost /etc/apache2/sites-available/000-default.conf sed -e "s?%BUILD_DIR%?$(echo $WORKSPACE)?g" --in-place /etc/apache2/sites-available/000-default.conf sed -e "s?%MKCERT_DIR%?$(echo $WORKSPACE)?g" --in-place /etc/apache2/sites-available/000-default.conf - -# Restart apache after giving permission -chmod 777 -R $WORKSPACE -chmod +x /home/runner/ -service apache2 restart