Browse Source

disable ynh-vpnclient-checker before configuring vpn client

HgO 1 year ago
parent
commit
ffbad5005e
1 changed files with 4 additions and 5 deletions
  1. 4 5
      scripts/config

+ 4 - 5
scripts/config

@@ -234,8 +234,8 @@ ynh_app_config_apply() {
 
     # Stop vpn client
     ynh_print_info --message="Stopping vpnclient in order to edit files"
-    touch /tmp/.ynh-vpnclient-stopped
-    /usr/local/bin/ynh-vpnclient stop
+    ynh_systemd_action --service_name="ynh-vpnclient-checker" --action="disable"
+    ynh_systemd_action --service_name="ynh-vpnclient" --action="stop"
 
     chown $app:$app /etc/openvpn/keys
     chmod go=--- /etc/openvpn/keys
@@ -254,9 +254,8 @@ ynh_app_config_apply() {
 
     # Start vpn client
     ynh_print_info --message="Starting vpnclient service if needed"
-    /usr/local/bin/ynh-vpnclient start
-    rm -f /tmp/.ynh-vpnclient-stopped
-
+    ynh_systemd_action --service_name="ynh-vpnclient" --action="start"
+    ynh_systemd_action --service_name="ynh-vpnclient-checker" --action="enable"
 }
 
 ynh_app_config_run $1