Files
2021-12-25 00:56:33 +01:00

9 lines
171 B
Bash

#!/bin/bash
if [ "${WP_CORE_SEPARATE}" == "true" ];
then
# change the owner for apache2
chown www-data:www-data src/wp/ -R
else
chown www-data:www-data src/ -R
fi