install 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. #!/bin/bash
  2. source _common.sh
  3. source /usr/share/yunohost/helpers
  4. # Default values for config panel
  5. ynh_app_setting_set "$app" service_enabled 0
  6. ynh_app_setting_set "$app" dns_method "yunohost"
  7. ynh_app_setting_set "$app" nameservers ""
  8. ynh_app_setting_set "$app" ip6_addr ""
  9. ynh_app_setting_set "$app" ip6_net ""
  10. #=================================================
  11. # DEPLOY FILES FROM PACKAGE
  12. #=================================================
  13. ynh_script_progression "Deploy files from package..."
  14. vpnclient_deploy_files_and_services
  15. #=================================================
  16. # RELOAD SERVICES
  17. #=================================================
  18. ynh_script_progression "Reloading services..."
  19. # Set default inits
  20. # The boot order of these services are important, so they are disabled by default
  21. # and the vpnclient service handles them.
  22. systemctl disable openvpn --quiet
  23. systemctl stop openvpn
  24. # main service
  25. yunohost service add $service_name --description "Tunnels the internet traffic through a VPN" --need_lock --test_status="systemctl is-active openvpn@client.service" --log "/var/log/ynh-vpnclient.log"
  26. yunohost service enable $service_name
  27. # checker service
  28. systemctl start $service_checker_name
  29. systemctl enable $service_checker_name --quiet
  30. systemctl start $service_checker_name.timer
  31. systemctl enable $service_checker_name.timer --quiet
  32. #=================================================
  33. # END OF SCRIPT
  34. #=================================================
  35. ynh_script_progression --message="Installation of $app completed" --last