1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/pleroma_ynh.git synced 2024-09-03 20:15:59 +02:00
This commit is contained in:
yalh76 2022-02-16 00:13:59 +01:00
parent 454536fe00
commit 21339ccc54
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
#=================================================