restore 6.3 KB

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