Browse Source

stop ynh-vpnclient before upgrading config

HgO 1 year ago
parent
commit
d2636aa1a3
1 changed files with 7 additions and 1 deletions
  1. 7 1
      scripts/upgrade

+ 7 - 1
scripts/upgrade

@@ -107,6 +107,11 @@ ynh_install_app_dependencies "$pkg_dependencies"
 # DEPLOY FILES FROM PACKAGE
 #=================================================
 
+ynh_print_info --message="Stopping VPN client to apply config changes..."
+
+ynh_systemd_action --action="stop" --service_name="$service_name-checker.timer"
+ynh_systemd_action --action="stop" --service_name="$service_name"
+
 # Keep a copy of existing config files before overwriting them
 tmp_dir=$(mktemp -d /tmp/vpnclient-upgrade-XXX)
 cp -r /etc/openvpn/client* ${tmp_dir}
@@ -156,7 +161,8 @@ fi
 ynh_print_info "Restart services..."
 
 # this is meant to propagate the new files and configs
-ynh_systemd_action --action=restart --service_name=$service_name
+ynh_systemd_action --action="start" --service_name="$service_name"
+ynh_systemd_action --action="start" --service_name="$service_name-checker.timer"
 
 #=================================================
 # END OF SCRIPT