restore 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. #!/bin/bash
  2. #=================================================
  3. # GENERIC START
  4. #=================================================
  5. # IMPORT GENERIC HELPERS
  6. #=================================================
  7. # Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
  8. source ../settings/scripts/_common.sh
  9. source /usr/share/yunohost/helpers
  10. #=================================================
  11. # MANAGE SCRIPT FAILURE
  12. #=================================================
  13. ynh_clean_setup () {
  14. ynh_clean_check_starting
  15. }
  16. # Exit if an error occurs during the execution of the script
  17. ynh_abort_if_errors
  18. #=================================================
  19. # LOAD SETTINGS
  20. #=================================================
  21. ynh_script_progression --message="Loading installation settings..."
  22. app=$YNH_APP_INSTANCE_NAME
  23. domain=$(ynh_app_setting_get --app=$app --key=domain)
  24. path_url=$(ynh_app_setting_get --app=$app --key=path)
  25. final_path=$(ynh_app_setting_get --app=$app --key=final_path)
  26. firmware_nonfree=$(ynh_app_setting_get --app=$app --key=firmware_nonfree)
  27. service_name=$(ynh_app_setting_get --app=$app --key=service_name)
  28. phpversion=$(ynh_app_setting_get --app=$app --key=phpversion)
  29. #=================================================
  30. # CHECK IF THE APP CAN BE RESTORED
  31. #=================================================
  32. ynh_script_progression --message="Validating restoration parameters..."
  33. ynh_webpath_available --domain=$domain --path_url=$path_url \
  34. || ynh_die --message="Path not available: ${domain}${path_url}"
  35. test ! -d $final_path \
  36. || ynh_die --message="There is already a directory: $final_path "
  37. #=================================================
  38. # STANDARD RESTORATION STEPS
  39. #=================================================
  40. # RESTORE THE NGINX CONFIGURATION
  41. #=================================================
  42. ynh_script_progression --message="Restoring the NGINX configuration..."
  43. ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
  44. #=================================================
  45. # RECREATE THE DEDICATED USER
  46. #=================================================
  47. ynh_script_progression --message="Recreating the dedicated system user..."
  48. # Create the dedicated user (if not existing)
  49. ynh_system_user_create --username=$app --home_dir=$final_path
  50. #=================================================
  51. # RESTORE THE APP MAIN DIR
  52. #=================================================
  53. ynh_script_progression --message="Restoring the app main directory..."
  54. ynh_restore_file --origin_path="$final_path"
  55. # Restore permissions on app files
  56. chmod 750 "$final_path"
  57. chmod o-rwx "$final_path"
  58. chown -R $app:www-data "$final_path"
  59. if [[ $firmware_nonfree -eq 1 ]]; then
  60. check_armbian_nonfree_conflict
  61. ynh_install_extra_app_dependencies --repo="deb http://deb.debian.org/debian $(ynh_get_debian_release) non-free" --package="$nonfree_firmware_packages"
  62. else
  63. pkg_dependencies="$pkg_dependencies $free_firmware_packages"
  64. fi
  65. ynh_restore_file --origin_path="/etc/sudoers.d/${app}_ynh"
  66. ynh_restore_file --origin_path="/usr/local/bin/iw_multissid"
  67. ynh_restore_file --origin_path="/usr/local/bin/iw_devices"
  68. ynh_restore_file --origin_path="/usr/local/bin/iw_ssids"
  69. ynh_restore_file --origin_path="/usr/local/bin/ipv6_expanded"
  70. ynh_restore_file --origin_path="/usr/local/bin/ipv6_compressed"
  71. for FILE in $(ls /etc/hostapd/hostapd.conf{.tpl?,} 2>/dev/null)
  72. do
  73. ynh_restore_file --origin_path="$FILE"
  74. done
  75. ynh_restore_file --origin_path="/etc/dnsmasq.dhcpd/dhcpdv6.conf.tpl"
  76. ynh_restore_file --origin_path="/etc/dnsmasq.dhcpd/dhcpdv4.conf.tpl"
  77. ynh_restore_file --origin_path="/usr/local/bin/$service_name"
  78. ynh_restore_file --origin_path="/etc/init.d/hostapd"
  79. #=================================================
  80. # RESTORE THE PHP-FPM CONFIGURATION
  81. #=================================================
  82. ynh_script_progression --message="Restoring the PHP-FPM configuration..."
  83. ynh_restore_file --origin_path="/etc/php/$phpversion/fpm/pool.d/$app.conf"
  84. #=================================================
  85. # SPECIFIC RESTORATION
  86. #=================================================
  87. # REINSTALL DEPENDENCIES
  88. #=================================================
  89. ynh_script_progression --message="Reinstalling dependencies..."
  90. # Define and install dependencies
  91. ynh_install_app_dependencies $pkg_dependencies
  92. #=================================================
  93. # RESTORE SYSTEMD
  94. #=================================================
  95. ynh_script_progression --message="Restoring the systemd configuration..."
  96. ynh_restore_file --origin_path="/etc/systemd/system/$service_name.service"
  97. systemctl enable $service_name.service --quiet
  98. #=================================================
  99. # INTEGRATE SERVICE IN YUNOHOST
  100. #=================================================
  101. ynh_script_progression --message="Integrating service in YunoHost..."
  102. yunohost service add $service_name --description "Creates a Wi-Fi access point" --test_status "systemctl is-active hostapd"
  103. #=================================================
  104. # START SYSTEMD SERVICE
  105. #=================================================
  106. ynh_script_progression --message="Starting a systemd service..."
  107. hot_reload_usb_wifi_cards
  108. wifi_device=$(bash ../settings/conf/iw_devices | awk -F\| '{ print $1 }')
  109. if [[ -z $wifi_device ]]; then
  110. ynh_app_setting_set --app=$app --key=service_enabled --value=0
  111. wifi_device=none
  112. else
  113. ynh_app_setting_set --app=$app --key=service_enabled --value=1
  114. fi
  115. # Start a systemd service if device is present
  116. if [[ $wifi_device == none ]]; then
  117. echo "WARNING: Wifi Hotspot is not started because no wifi device was found (please, check the web admin)" >&2
  118. else
  119. ynh_systemd_action --service_name=$service_name --action="start" --log_path=systemd #--line_match="Started YunoHost Wifi Hotspot"
  120. fi
  121. #=================================================
  122. # GENERIC FINALIZATION
  123. #=================================================
  124. # RELOAD NGINX AND PHP-FPM
  125. #=================================================
  126. ynh_script_progression --message="Reloading NGINX web server and PHP-FPM..."
  127. ynh_systemd_action --service_name=php$phpversion-fpm --action=reload
  128. ynh_systemd_action --service_name=nginx --action=reload
  129. #=================================================
  130. # END OF SCRIPT
  131. #=================================================
  132. ynh_script_progression --message="Restoration completed for $app"