restore 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  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. domain=$(ynh_app_setting_get $app domain)
  20. path_url=$(ynh_app_setting_get $app path)
  21. final_path=$(ynh_app_setting_get $app final_path)
  22. #=================================================
  23. # CHECK IF THE APP CAN BE RESTORED
  24. #=================================================
  25. ynh_print_info "Validating restoration parameters..."
  26. ynh_webpath_available $domain $path_url \
  27. || ynh_die "Path not available: ${domain}${path_url}"
  28. test ! -d $final_path \
  29. || ynh_die "There is already a directory: $final_path "
  30. #=================================================
  31. # STANDARD RESTORATION STEPS
  32. #=================================================
  33. # RESTORE THE NGINX CONFIGURATION
  34. #=================================================
  35. ynh_restore_file "/etc/nginx/conf.d/$domain.d/$app.conf"
  36. #=================================================
  37. # RESTORE THE APP MAIN DIR
  38. #=================================================
  39. ynh_print_info "Restoring the app main directory..."
  40. ynh_restore_file "$final_path"
  41. ynh_restore_file "/etc/sudoers.d/${app}_ynh"
  42. ynh_restore_file "/usr/local/bin/ipv6_expanded"
  43. ynh_restore_file "/usr/local/bin/ipv6_compressed"
  44. ynh_restore_file "/usr/local/bin/$service_name-loadcubefile.sh"
  45. ynh_restore_file "/etc/yunohost/hooks.d/90-vpnclient.tpl"
  46. ynh_restore_file "/etc/openvpn/client.conf.tpl"
  47. ynh_restore_file "/etc/openvpn/client.conf.tpl.restore"
  48. ynh_restore_file "/etc/openvpn/keys/"
  49. ynh_restore_file "/usr/local/bin/$service_name"
  50. ynh_restore_file "/usr/local/bin/$service_checker_name.sh"
  51. #=================================================
  52. # RECREATE THE DEDICATED USER
  53. #=================================================
  54. ynh_print_info "Recreating the dedicated system user..."
  55. # Create the dedicated user (if not existing)
  56. ynh_system_user_create $app
  57. #=================================================
  58. # RESTORE USER RIGHTS
  59. #=================================================
  60. # Restore permissions on app files
  61. chown -R $app: $final_path
  62. #=================================================
  63. # RESTORE THE PHP-FPM CONFIGURATION
  64. #=================================================
  65. ynh_restore_file "/etc/php/7.0/fpm/pool.d/$app.conf"
  66. #=================================================
  67. # SPECIFIC RESTORATION
  68. #=================================================
  69. # REINSTALL DEPENDENCIES
  70. #=================================================
  71. ynh_print_info "Reinstalling dependencies..."
  72. # Define and install dependencies
  73. ynh_install_app_dependencies "$pkg_dependencies"
  74. #=================================================
  75. # RESTORE SYSTEMD
  76. #=================================================
  77. ynh_print_info "Restoring the systemd configuration..."
  78. ynh_restore_file "/etc/systemd/system/$service_name.service"
  79. ynh_restore_file "/etc/systemd/system/$service_checker_name.service"
  80. ynh_restore_file "/etc/systemd/system/$service_checker_name.timer"
  81. ynh_restore_file "/etc/systemd/system/openvpn@.service"
  82. systemctl daemon-reload
  83. systemctl enable "$service_name.service"
  84. systemctl enable "$service_checker_name.service"
  85. systemctl enable "openvpn@.service"
  86. #=================================================
  87. # ADVERTISE SERVICE IN ADMIN PANEL
  88. #=================================================
  89. yunohost service add $service_name --description "Tunnels the internet traffic through a VPN" --need_lock
  90. yunohost service add $service_checker_name --description "Makes sure that the VPN service is running" --need_lock
  91. #=================================================
  92. # GENERIC FINALIZATION
  93. #=================================================
  94. # RELOAD NGINX AND PHP-FPM
  95. #=================================================
  96. ynh_print_info "Reloading nginx web server and php-fpm..."
  97. systemctl restart php7.0-fpm
  98. systemctl reload nginx
  99. #=================================================
  100. # END OF SCRIPT
  101. #=================================================
  102. ynh_print_info "Restoration completed for $app"