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