diff --git a/README.md b/README.md index ccc77a4..9f65e3b 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in A simple donation form with stripe -**Shipped version:** 1.0.1~ynh1 +**Shipped version:** 1.0.1~ynh2 **Demo:** https://donate.yunohost.org diff --git a/README_fr.md b/README_fr.md index 5eb64dd..fef229a 100644 --- a/README_fr.md +++ b/README_fr.md @@ -13,7 +13,7 @@ Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour Un simple formulaire de don avec stripe -**Version incluse :** 1.0.1~ynh1 +**Version incluse :** 1.0.1~ynh2 **Démo :** https://donate.yunohost.org diff --git a/check_process b/check_process index 4da3498..23091f6 100644 --- a/check_process +++ b/check_process @@ -18,7 +18,15 @@ setup_private=1 setup_public=1 upgrade=1 + # 1.0.1~ynh1 + upgrade=1 from_commit=5cc2d3ffd6529cc7356ff93af92dbb6785c3ab9a backup_restore=1 multi_instance=1 port_already_use=0 change_url=1 +;;; Options +Email= +Notification=none +;;; Upgrade options + ; commit=5cc2d3ffd6529cc7356ff93af92dbb6785c3ab9a + name=1.0.1~ynh1 diff --git a/manifest.json b/manifest.json index b8a8d8c..7130ec5 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "A simple donation form with stripe", "fr": "Un simple formulaire de don avec stripe" }, - "version": "1.0.1~ynh1", + "version": "1.0.1~ynh2", "url": "https://github.com/YunoHost/pepettes/", "upstream": { "license": "MIT", diff --git a/scripts/install b/scripts/install index 059dcff..337a4a8 100755 --- a/scripts/install +++ b/scripts/install @@ -127,6 +127,7 @@ pushd $final_path venv/bin/pip install gunicorn mkdir -p /var/log/$app chown -R $app:www-data /var/log/$app + chmod o-rwx /var/log/$app cat <> wsgi.py from server import app diff --git a/scripts/restore b/scripts/restore index 5ac7fdd..cc35ab0 100755 --- a/scripts/restore +++ b/scripts/restore @@ -91,6 +91,7 @@ pushd $final_path venv/bin/pip install gunicorn mkdir -p /var/log/$app chown -R $app:www-data /var/log/$app + chmod o-rwx /var/log/$app popd #================================================= diff --git a/scripts/upgrade b/scripts/upgrade index 91c7a70..7b88a17 100644 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -114,6 +114,7 @@ pushd $final_path venv/bin/pip install gunicorn mkdir -p /var/log/$app chown -R $app:www-data /var/log/$app + chmod o-rwx /var/log/$app cat <> wsgi.py from server import app