restore 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  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. wifi_device=$(ynh_app_setting_get --app=$app --key=wifi_device)
  26. #=================================================
  27. # CHECK IF THE APP CAN BE RESTORED
  28. #=================================================
  29. ynh_script_progression --message="Validating restoration parameters..."
  30. #=================================================
  31. # FIND AND OPEN A PORT
  32. #=================================================
  33. ynh_script_progression --message="Configuring firewall..."
  34. # Update firewall for DHCP
  35. ynh_exec_warn_less yunohost firewall allow --no-upnp --ipv6 UDP 547
  36. ynh_exec_warn_less yunohost firewall allow --no-upnp UDP 67
  37. # Meh idk where to put this ... On RPi, by default wlan is blocked
  38. if test -e /usr/sbin/rfkill && rfkill | grep wlan | grep -q -w 'blocked'
  39. then
  40. ynh_print_info "Unblocking wlan interface..."
  41. /usr/sbin/rfkill unblock wlan
  42. fi
  43. #=================================================
  44. # STANDARD RESTORATION STEPS
  45. #=================================================
  46. #=================================================
  47. # RECREATE THE DEDICATED USER
  48. #=================================================
  49. ynh_script_progression --message="Recreating the dedicated system user..."
  50. # Create the dedicated user (if not existing)
  51. ynh_system_user_create --username=$app
  52. if [[ $firmware_nonfree -eq 1 ]]; then
  53. check_armbian_nonfree_conflict
  54. ynh_install_extra_app_dependencies --repo="deb http://deb.debian.org/debian $(ynh_get_debian_release) non-free" --package="$nonfree_firmware_packages"
  55. else
  56. pkg_dependencies="$pkg_dependencies $free_firmware_packages"
  57. fi
  58. ynh_restore_file --origin_path="/etc/hostapd/$app/hostapd.conf.tpl"
  59. ynh_restore_file --origin_path="/etc/hostapd/$app/hostapd.conf" --not_mandatory
  60. ynh_restore_file --origin_path="/etc/dnsmasq.$app/dhcpdv6.conf.tpl"
  61. ynh_restore_file --origin_path="/etc/dnsmasq.$app/dhcpdv6.conf" --not_mandatory
  62. ynh_restore_file --origin_path="/etc/dnsmasq.$app/dhcpdv4.conf.tpl"
  63. ynh_restore_file --origin_path="/etc/dnsmasq.$app/dhcpdv4.conf" --not_mandatory
  64. ynh_restore_file --origin_path="/usr/local/bin/$service_name"
  65. ynh_restore_file --origin_path="/etc/openvpn/scripts/route-up.d/90-${service_name}"
  66. ynh_restore_file --origin_path="/etc/openvpn/scripts/route-down.d/90-${service_name}"
  67. #=================================================
  68. # SPECIFIC RESTORATION
  69. #=================================================
  70. # REINSTALL DEPENDENCIES
  71. #=================================================
  72. ynh_script_progression --message="Reinstalling dependencies..."
  73. # Define and install dependencies
  74. ynh_install_app_dependencies $pkg_dependencies
  75. #=================================================
  76. # RESTORE SYSTEMD
  77. #=================================================
  78. ynh_script_progression --message="Restoring the systemd configuration..."
  79. ynh_restore_file --origin_path="/etc/systemd/system/$service_name.service"
  80. ynh_restore_file --origin_path="/etc/systemd/system/hostapd@$app.service"
  81. #=================================================
  82. # INTEGRATE SERVICE IN YUNOHOST
  83. #=================================================
  84. ynh_script_progression --message="Integrating service in YunoHost..."
  85. yunohost service add $service_name --description "Creates a Wi-Fi access point" --test_status "systemctl is-active hostapd@$app" --need_lock
  86. #=================================================
  87. # START SYSTEMD SERVICE
  88. #=================================================
  89. ynh_script_progression --message="Starting a systemd service..."
  90. hot_reload_usb_wifi_cards
  91. if [[ -z "$wifi_device" ]] || ! grep -q -F "$wifi_device" <(unused_iw_devices); then
  92. wifi_device=$(unused_iw_devices | head -n 1)
  93. ynh_app_setting_set --app=$app --key=wifi_device --value="${wifi_device}"
  94. fi
  95. if [[ -z $wifi_device ]]; then
  96. ynh_app_setting_set --app=$app --key=service_enabled --value=0
  97. else
  98. ynh_app_setting_set --app=$app --key=service_enabled --value=1
  99. fi
  100. # Start a systemd service if device is present
  101. if [[ $wifi_device == "" ]]; then
  102. echo "WARNING: Wifi Hotspot is not started because no wifi device was found (please, check the web admin)" >&2
  103. else
  104. ynh_systemd_action --service_name=$service_name --action="start" --log_path=systemd #--line_match="Started YunoHost Wifi Hotspot"
  105. fi
  106. #=================================================
  107. # END OF SCRIPT
  108. #=================================================
  109. ynh_script_progression --message="Restoration completed for $app"