restore 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  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. firmware_nonfree=$(ynh_app_setting_get --app=$app --key=firmware_nonfree)
  24. service_name=$(ynh_app_setting_get --app=$app --key=service_name)
  25. #=================================================
  26. # CHECK IF THE APP CAN BE RESTORED
  27. #=================================================
  28. ynh_script_progression --message="Validating restoration parameters..."
  29. #=================================================
  30. # STANDARD RESTORATION STEPS
  31. #=================================================
  32. #=================================================
  33. # RECREATE THE DEDICATED USER
  34. #=================================================
  35. ynh_script_progression --message="Recreating the dedicated system user..."
  36. # Create the dedicated user (if not existing)
  37. ynh_system_user_create --username=$app
  38. if [[ $firmware_nonfree -eq 1 ]]; then
  39. check_armbian_nonfree_conflict
  40. ynh_install_extra_app_dependencies --repo="deb http://deb.debian.org/debian $(ynh_get_debian_release) non-free" --package="$nonfree_firmware_packages"
  41. else
  42. pkg_dependencies="$pkg_dependencies $free_firmware_packages"
  43. fi
  44. for FILE in $(ls /etc/hostapd/hostapd.conf{.tpl?,} 2>/dev/null)
  45. do
  46. ynh_restore_file --origin_path="$FILE"
  47. done
  48. ynh_restore_file --origin_path="/etc/dnsmasq.dhcpd/dhcpdv6.conf.tpl"
  49. ynh_restore_file --origin_path="/etc/dnsmasq.dhcpd/dhcpdv4.conf.tpl"
  50. ynh_restore_file --origin_path="/usr/local/bin/$service_name"
  51. ynh_restore_file --origin_path="/etc/init.d/hostapd"
  52. #=================================================
  53. # SPECIFIC RESTORATION
  54. #=================================================
  55. # REINSTALL DEPENDENCIES
  56. #=================================================
  57. ynh_script_progression --message="Reinstalling dependencies..."
  58. # Define and install dependencies
  59. ynh_install_app_dependencies $pkg_dependencies
  60. #=================================================
  61. # RESTORE SYSTEMD
  62. #=================================================
  63. ynh_script_progression --message="Restoring the systemd configuration..."
  64. ynh_restore_file --origin_path="/etc/systemd/system/$service_name.service"
  65. systemctl enable $service_name.service --quiet
  66. #=================================================
  67. # INTEGRATE SERVICE IN YUNOHOST
  68. #=================================================
  69. ynh_script_progression --message="Integrating service in YunoHost..."
  70. yunohost service add $service_name --description "Creates a Wi-Fi access point" --test_status "systemctl is-active hostapd"
  71. #=================================================
  72. # START SYSTEMD SERVICE
  73. #=================================================
  74. ynh_script_progression --message="Starting a systemd service..."
  75. hot_reload_usb_wifi_cards
  76. wifi_device=$(iw_devices | awk -F\| '{ print $1 }')
  77. if [[ -z $wifi_device ]]; then
  78. ynh_app_setting_set --app=$app --key=service_enabled --value=0
  79. else
  80. ynh_app_setting_set --app=$app --key=service_enabled --value=1
  81. fi
  82. # Start a systemd service if device is present
  83. if [[ $wifi_device == "" ]]; then
  84. echo "WARNING: Wifi Hotspot is not started because no wifi device was found (please, check the web admin)" >&2
  85. else
  86. ynh_systemd_action --service_name=$service_name --action="start" --log_path=systemd #--line_match="Started YunoHost Wifi Hotspot"
  87. fi
  88. #=================================================
  89. # END OF SCRIPT
  90. #=================================================
  91. ynh_script_progression --message="Restoration completed for $app"