1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/wordpress_ynh.git synced 2024-09-03 20:36:10 +02:00

Merge pull request #158 from YunoHost-Apps/perms

Fix group ownership
This commit is contained in:
tituspijean 2022-05-22 21:17:21 +02:00 committed by GitHub
commit 22aae0f092
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 11 additions and 0 deletions

View file

@ -230,9 +230,12 @@ $wpcli_alias plugin activate authldap $plugin_network
$wpcli_alias plugin activate companion-auto-update $plugin_network
$wpcli_alias plugin activate wp-fail2ban-redux $plugin_network
# Set file and directories ownership
mkdir -p $final_path/wp-content/uploads
chmod 750 "$final_path"
chmod -R o-rwx "$final_path"
chown -R $app:www-data "$final_path"
chmod g+s $final_path/wp-content/uploads
#=================================================
# STORE THE CONFIG FILE CHECKSUM

View file

@ -74,9 +74,12 @@ ynh_script_progression --message="Restoring the app main directory..."
ynh_restore_file --origin_path="$final_path"
# Set file and directories ownership
chmod 750 "$final_path"
chmod -R o-rwx "$final_path"
chown -R $app:www-data "$final_path"
chmod g+s $final_path/wp-content/uploads
chmod g+s $(find $final_path/wp-content/uploads -type d)
chmod 400 "$final_path/wp-config.php"
chown $app:$app "$final_path/wp-config.php"

View file

@ -277,9 +277,14 @@ $wpcli_alias plugin activate wp-fail2ban-redux $plugin_network
# Disable broken plugin http-authentication
$wpcli_alias plugin is-installed http-authentication && $wpcli_alias plugin deactivate http-authentication $plugin_network
# Set file and directories ownership
mkdir -p $final_path/wp-content/uploads
chmod 750 "$final_path"
chmod -R o-rwx "$final_path"
chown -R $app:www-data "$final_path"
chmod g+s $final_path/wp-content/uploads
chmod g+s $(find $final_path/wp-content/uploads -type d)
#=================================================
# STORE THE CHECKSUM OF THE CONFIG FILE