restore 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. #!/bin/bash
  2. #=================================================
  3. # GENERIC START
  4. #=================================================
  5. # IMPORT GENERIC HELPERS
  6. #=================================================
  7. source ../settings/scripts/_common.sh
  8. source /usr/share/yunohost/helpers
  9. #=================================================
  10. # MANAGE SCRIPT FAILURE
  11. #=================================================
  12. # Exit if an error occurs during the execution of the script
  13. ynh_abort_if_errors
  14. #=================================================
  15. # LOAD SETTINGS
  16. #=================================================
  17. ynh_print_info "Loading settings..."
  18. app=$YNH_APP_INSTANCE_NAME
  19. #=================================================
  20. # RESTORE THE APP MAIN DIR
  21. #=================================================
  22. ynh_print_info "Restoring the app files..."
  23. ynh_restore_file --origin_path="/usr/local/bin/$service_name-loadcubefile.sh"
  24. ynh_restore_file --origin_path="/etc/yunohost/hooks.d/90-vpnclient.tpl"
  25. ynh_restore_file --origin_path="/etc/openvpn/client.conf.tpl"
  26. ynh_restore_file --origin_path="/etc/openvpn/client.conf" --not_mandatory
  27. ynh_restore_file --origin_path="/etc/openvpn/client.cube" --not_mandatory
  28. ynh_restore_file --origin_path="/etc/openvpn/client.ovpn" --not_mandatory
  29. for FILE in $(ls /etc/openvpn/scripts/route-up.d/*-vpnclient-* /etc/openvpn/scripts/route-down.d/*-vpnclient-*); do
  30. ynh_restore_file --origin_path="$FILE"
  31. done
  32. ynh_restore_file --origin_path="/etc/openvpn/keys/"
  33. ynh_restore_file --origin_path="/etc/openvpn/scripts/run-parts.sh"
  34. ynh_restore_file --origin_path="/usr/local/bin/$service_name"
  35. ynh_restore_file --origin_path="/usr/local/bin/$service_checker_name.sh"
  36. #=================================================
  37. # RECREATE THE DEDICATED USER
  38. #=================================================
  39. ynh_print_info "Recreating the dedicated system user..."
  40. # Create the dedicated user (if not existing)
  41. ynh_system_user_create $app
  42. #=================================================
  43. # SPECIFIC RESTORATION
  44. #=================================================
  45. # REINSTALL DEPENDENCIES
  46. #=================================================
  47. ynh_print_info "Reinstalling dependencies..."
  48. # Define and install dependencies
  49. ynh_install_app_dependencies "$pkg_dependencies"
  50. #=================================================
  51. # RESTORE SYSTEMD
  52. #=================================================
  53. ynh_print_info "Restoring the systemd configuration..."
  54. ynh_restore_file --origin_path="/etc/systemd/system/$service_name.service"
  55. ynh_restore_file --origin_path="/etc/systemd/system/$service_checker_name.service"
  56. ynh_restore_file --origin_path="/etc/systemd/system/$service_checker_name.timer"
  57. ynh_restore_file --origin_path="/etc/systemd/system/openvpn@.service.d/override.conf"
  58. systemctl daemon-reload
  59. systemctl enable "$service_name.service" --quiet
  60. systemctl enable "$service_checker_name.service" --quiet
  61. systemctl enable "openvpn@.service" --quiet
  62. #=================================================
  63. # ADVERTISE SERVICE IN ADMIN PANEL
  64. #=================================================
  65. 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"
  66. #=================================================
  67. # GENERIC FINALIZATION
  68. #=================================================
  69. #=================================================
  70. # END OF SCRIPT
  71. #=================================================
  72. ynh_print_info "Restoration completed for $app"