restore 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  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. packages=$nonfree_packages
  52. else
  53. packages=$free_packages
  54. ynh_restore_file --origin_path="/lib/firmware/htc_7010.fw"
  55. ynh_restore_file --origin_path="/lib/firmware/htc_9271.fw"
  56. fi
  57. ynh_restore_file --origin_path="/etc/sudoers.d/${app}_ynh"
  58. ynh_restore_file --origin_path="/usr/local/bin/iw_multissid"
  59. ynh_restore_file --origin_path="/usr/local/bin/iw_devices"
  60. ynh_restore_file --origin_path="/usr/local/bin/iw_ssids"
  61. ynh_restore_file --origin_path="/usr/local/bin/ipv6_expanded"
  62. ynh_restore_file --origin_path="/usr/local/bin/ipv6_compressed"
  63. for FILE in $(ls /etc/hostapd/hostapd.conf{.tpl?,} 2>/dev/null)
  64. do
  65. ynh_restore_file --origin_path="$FILE"
  66. done
  67. ynh_restore_file --origin_path="/etc/dnsmasq.dhcpd/dhcpdv6.conf.tpl"
  68. ynh_restore_file --origin_path="/etc/dnsmasq.dhcpd/dhcpdv4.conf.tpl"
  69. ynh_restore_file --origin_path="/usr/local/bin/$service_name"
  70. ynh_restore_file --origin_path="/etc/init.d/hostapd"
  71. #=================================================
  72. # RECREATE THE DEDICATED USER
  73. #=================================================
  74. ynh_script_progression --message="Recreating the dedicated system user..."
  75. # Create the dedicated user (if not existing)
  76. ynh_system_user_create --username=$app
  77. #=================================================
  78. # RESTORE USER RIGHTS
  79. #=================================================
  80. ynh_script_progression --message="Restoring user rights..."
  81. # Restore permissions on app files
  82. chown -R $app: $final_path
  83. #=================================================
  84. # RESTORE THE PHP-FPM CONFIGURATION
  85. #=================================================
  86. ynh_script_progression --message="Restoring PHP-FPM configuration..."
  87. ynh_restore_file --origin_path="/etc/php/$phpversion/fpm/pool.d/$app.conf"
  88. #=================================================
  89. # SPECIFIC RESTORATION
  90. #=================================================
  91. # REINSTALL DEPENDENCIES
  92. #=================================================
  93. ynh_script_progression --message="Reinstalling dependencies..."
  94. # Define and install dependencies
  95. ynh_install_app_dependencies "$pkg_dependencies" "$packages"
  96. #=================================================
  97. # RESTORE SYSTEMD
  98. #=================================================
  99. ynh_script_progression --message="Restoring the systemd configuration..."
  100. ynh_restore_file --origin_path="/etc/systemd/system/$service_name.service"
  101. systemctl enable $service_name.service
  102. #=================================================
  103. # INTEGRATE SERVICE IN YUNOHOST
  104. #=================================================
  105. ynh_script_progression --message="Integrating service in YunoHost..."
  106. yunohost service add $service_name --description "Creates a Wi-Fi access point" --log_type "systemd" --need_lock
  107. #=================================================
  108. # START SYSTEMD SERVICE
  109. #=================================================
  110. ynh_script_progression --message="Starting a systemd service..."
  111. wifi_device=$(bash ../settings/conf/iw_devices | awk -F\| '{ print $1 }')
  112. if [[ -z $wifi_device ]]; then
  113. ynh_app_setting_set --app=$app --key=service_enabled --value=0
  114. wifi_device=none
  115. else
  116. ynh_app_setting_set --app=$app --key=service_enabled --value=1
  117. fi
  118. # Start a systemd service if device is present
  119. if [[ $wifi_device == none ]]; then
  120. echo "WARNING: Wifi Hotspot is not started because no wifi device was found (please, check the web admin)" >&2
  121. else
  122. ynh_systemd_action --service_name=$service_name --action="start" --log_path=systemd #--line_match="Started YunoHost Wifi Hotspot"
  123. fi
  124. #=================================================
  125. # GENERIC FINALIZATION
  126. #=================================================
  127. # RELOAD NGINX AND PHP-FPM
  128. #=================================================
  129. ynh_script_progression --message="Reloading nginx web server and php-fpm..."
  130. ynh_systemd_action --service_name=php$phpversion-fpm --action=reload
  131. ynh_systemd_action --service_name=nginx --action=reload
  132. #=================================================
  133. # END OF SCRIPT
  134. #=================================================
  135. ynh_script_progression --message="Restoration completed for $app"