diff --git a/README.md b/README.md index 6878e9b..3ed3067 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,8 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in ## Overview -Open Source Push Notification Server +ntfy (pronounce: *notify*) is a simple HTTP-based pub-sub notification service. It allows you to send notifications to your phone or desktop via scripts from any computer, entirely without signup, cost or setup. It's also open source if you want to run your own. + **Shipped version:** 1.29.0~ynh1 diff --git a/README_fr.md b/README_fr.md index f585334..2a57ab1 100644 --- a/README_fr.md +++ b/README_fr.md @@ -15,6 +15,7 @@ Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour ## Vue d'ensemble +ntfy (pronounce: *notify*) is a simple HTTP-based pub-sub notification service. It allows you to send notifications to your phone or desktop via scripts from any computer, entirely without signup, cost or setup. It's also open source if you want to run your own. **Version incluse :** 1.29.0~ynh1 diff --git a/conf/arm7.src b/conf/armhf.src similarity index 100% rename from conf/arm7.src rename to conf/armhf.src diff --git a/doc/DESCRIPTION.md b/doc/DESCRIPTION.md new file mode 100644 index 0000000..7bf19d3 --- /dev/null +++ b/doc/DESCRIPTION.md @@ -0,0 +1 @@ +ntfy (pronounce: *notify*) is a simple HTTP-based pub-sub notification service. It allows you to send notifications to your phone or desktop via scripts from any computer, entirely without signup, cost or setup. It's also open source if you want to run your own. diff --git a/manifest.json b/manifest.json index 04ebdb7..6890218 100644 --- a/manifest.json +++ b/manifest.json @@ -3,7 +3,8 @@ "id": "ntfy", "packaging_format": 1, "description": { - "en": "Open Source Push Notification Server" + "en": "Open Source Push Notification Server", + "fr": "Serveur open source de notification" }, "upstream": { "license": "GPL-2.0-only", diff --git a/scripts/install b/scripts/install index 7013cce..032e7ef 100755 --- a/scripts/install +++ b/scripts/install @@ -110,7 +110,6 @@ chown $app:$app "$final_path/server.yml" ynh_script_progression --message="Configuring a systemd service..." --weight=1 # Create a dedicated systemd config -architecture=$YNH_ARCH ynh_add_systemd_config #================================================= @@ -150,12 +149,12 @@ ynh_systemd_action --service_name=nginx --action=reload #================================================= # ADD APP ADMIN USER #================================================= - ynh_script_progression --message="Adding admin user..." --weight=1 ynh_exec_as $app NTFY_PASSWORD="$password" $final_path/ntfy user --config=$final_path/server.yml add --role=admin $admin + #================================================= # END OF SCRIPT #================================================= -ynh_script_progression --message="Installation of $app completed" --last \ No newline at end of file +ynh_script_progression --message="Installation of $app completed" --last diff --git a/scripts/upgrade b/scripts/upgrade index 7c6de3d..2ef09dd 100755 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -109,7 +109,6 @@ chown $app:$app "$final_path/server.yml" ynh_script_progression --message="Upgrading systemd configuration..." --weight=1 # Create a dedicated systemd config -architecture=$YNH_ARCH ynh_add_systemd_config #=================================================