1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/pleroma_ynh.git synced 2024-09-03 20:15:59 +02:00

Merge pull request #190 from YunoHost-Apps/testing

Few fix
This commit is contained in:
yalh76 2022-02-18 19:55:28 +01:00 committed by GitHub
commit cae8210f56
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View file

@ -77,7 +77,7 @@ ynh_script_progression --message="Stopping a systemd service..."
ynh_systemd_action --service_name=$app --action="stop" --log_path=systemd --line_match="Stopped $app"
pkill -u $app
pkill -u $app || true
#=================================================
# MODIFY URL IN NGINX CONF

View file

@ -42,7 +42,7 @@ ynh_script_progression --message="Stopping and removing the systemd service..."
ynh_systemd_action --service_name=$app --action="stop" --log_path=systemd --line_match="Stopped $app"
pkill -u $app
pkill -u $app || true
# Remove the dedicated systemd config
ynh_remove_systemd_config

View file

@ -76,7 +76,7 @@ ynh_script_progression --message="Stopping a systemd service..."
ynh_systemd_action --service_name=$app --action="stop" --log_path=systemd --line_match="Stopped $app"
if ynh_version_gt "${previous_version}" "1.1.1~ynh1" ; then
pkill -u $app
pkill -u $app || true
fi
#=================================================