1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/trilium_ynh.git synced 2024-10-01 13:34:49 +02:00

Misc. fixes from Alex

Signed-off-by: John Schmidt <john@schmidthaus.rocks>
This commit is contained in:
John Schmidt 2023-02-25 15:38:10 -08:00
parent 9e5f3aaf5f
commit 16b5faac8c
No known key found for this signature in database
GPG key ID: CBE9931447EA102A
5 changed files with 5 additions and 7 deletions

View file

@ -33,8 +33,8 @@ ram.runtime = "110M"
full_domain = true
[install.init_main_permission]
help.en = "Required for sync with desktop app"
help.fr = "Nécessaire pour la synchronisation avec l'application desktop"
help.en = "Enabling visitors access is required for sync with desktop app"
help.fr = "Autoriser l'accès aux visiteurs est nécessaire pour la synchronisation avec l'application desktop"
type = "group"
default = "visitors"

View file

@ -60,8 +60,6 @@ chmod 750 "$install_dir"
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
ynh_exec_as root echo ~$app
#=================================================
# SPECIFIC SETUP
#=================================================
@ -151,7 +149,7 @@ yunohost service add $app --description="Trilium Notes app" --log="systemd"
#=================================================
# ADD A CONFIGURATION
#=================================================
ynh_script_progression --message="Adding a configuration file..." --weight=1
ynh_script_progression --message="Adding a configuration file..."
### You can add specific configuration files.
###

View file

@ -28,14 +28,14 @@ source /usr/share/yunohost/helpers
# REMOVE SYSTEMD SERVICE
#=================================================
ynh_script_progression --message="Removing system configurations related to $app..." --weight=60
ynh_script_progression --message="Removing system configurations related to $app..."
# This should be a symetric version of what happens in the install script
# Remove the service from the list of services known by YunoHost (added from `yunohost service add`)
if ynh_exec_warn_less yunohost service status $app >/dev/null
then
ynh_script_progression --message="Removing $app service integration..." --weight=30
ynh_script_progression --message="Removing $app service integration..."
yunohost service remove $app
fi