mirror of
https://github.com/YunoHost-Apps/wemawema_ynh.git
synced 2024-10-01 13:34:56 +02:00
Fix perm
This commit is contained in:
parent
f851ed7eac
commit
2ad99d779c
6 changed files with 14 additions and 10 deletions
|
@ -36,8 +36,8 @@ WemaWema is a *WE MAKE PORN* meme generator, but it can do more.
|
|||
|
||||
#### Supported architectures
|
||||
|
||||
* x86-64 - [](https://ci-apps.yunohost.org/ci/apps/wemawema/)
|
||||
* ARMv8-A - [](https://ci-apps-arm.yunohost.org/ci/apps/wemawema/)
|
||||
* x86-64 - [](https://ci-apps.yunohost.org/ci/apps/wemawema/)
|
||||
* ARMv8-A - [](https://ci-apps-arm.yunohost.org/ci/apps/wemawema/)
|
||||
|
||||
## Limitations
|
||||
|
||||
|
|
|
@ -35,8 +35,8 @@ WemaWema est un générateur de mèmes *WE MAKE PORN*.
|
|||
|
||||
#### Architectures supportées
|
||||
|
||||
* x86-64 - [](https://ci-apps.yunohost.org/ci/apps/wemawema/)
|
||||
* ARMv8-A - [](https://ci-apps-arm.yunohost.org/ci/apps/wemawema/)
|
||||
* x86-64 - [](https://ci-apps.yunohost.org/ci/apps/wemawema/)
|
||||
* ARMv8-A - [](https://ci-apps-arm.yunohost.org/ci/apps/wemawema/)
|
||||
|
||||
## Limitations
|
||||
|
||||
|
|
|
@ -13,6 +13,4 @@
|
|||
|
||||
## Package_check results
|
||||
---
|
||||
*If you have access to [App Continuous Integration for packagers](https://yunohost.org/#/packaging_apps_ci) you can provide a link to the package_check results like below, replacing '-NUM-' in this link by the PR number and USERNAME by your username on the ci-apps-dev. Or you provide a screenshot or a pastebin of the results*
|
||||
|
||||
[/badge/icon)](https://ci-apps-dev.yunohost.org/jenkins/job/wemawema_ynh%20PR-NUM-%20(USERNAME)/)
|
||||
* An automatic package_check will be launch at https://ci-apps-dev.yunohost.org/, when you add a specific comment to your Pull Request: "!testme", "!gogogadgetoci" or "By the power of systemd, I invoke The Great App CI to test this Pull Request!"*
|
||||
|
|
|
@ -71,7 +71,9 @@ ynh_add_nginx_config
|
|||
#=================================================
|
||||
|
||||
# Set permissions to app files
|
||||
chown -R www-data: $final_path
|
||||
chmod 750 "$final_path"
|
||||
chmod -R o-rwx "$final_path"
|
||||
chown -R root: "$final_path"
|
||||
|
||||
#=================================================
|
||||
# SETUP SSOWAT
|
||||
|
|
|
@ -56,7 +56,9 @@ ynh_restore_file --origin_path="$final_path"
|
|||
#=================================================
|
||||
|
||||
# Restore permissions on app files
|
||||
chown -R www-data: $final_path
|
||||
chmod 750 "$final_path"
|
||||
chmod -R o-rwx "$final_path"
|
||||
chown -R root: "$final_path"
|
||||
|
||||
#=================================================
|
||||
# GENERIC FINALIZATION
|
||||
|
|
|
@ -86,7 +86,9 @@ ynh_add_nginx_config
|
|||
#=================================================
|
||||
|
||||
# Set right permissions for curl installation
|
||||
chown -R www-data: $final_path
|
||||
chmod 750 "$final_path"
|
||||
chmod -R o-rwx "$final_path"
|
||||
chown -R root: "$final_path"
|
||||
|
||||
#=================================================
|
||||
# RELOAD NGINX
|
||||
|
|
Loading…
Add table
Reference in a new issue