restore 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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. if systemctl -q is-enabled hostapd
  11. then
  12. # Disable hostapd, we'll use hostapd@$app instead (for multissid support etc)
  13. systemctl disable hostapd --quiet 2>&1
  14. systemctl stop hostapd 2>&1
  15. systemctl mask hostapd 2>&1
  16. fi
  17. #=================================================
  18. # FIND AND OPEN A PORT
  19. #=================================================
  20. ynh_script_progression --message="Configuring firewall..."
  21. # Update firewall for DHCP
  22. ynh_exec_warn_less yunohost firewall allow --no-upnp --ipv6 UDP 547
  23. ynh_exec_warn_less yunohost firewall allow --no-upnp UDP 67
  24. # Meh idk where to put this ... On RPi, by default wlan is blocked
  25. if test -e /usr/sbin/rfkill && rfkill | grep wlan | grep -q -w 'blocked'
  26. then
  27. ynh_print_info "Unblocking wlan interface..."
  28. /usr/sbin/rfkill unblock wlan
  29. fi
  30. #=================================================
  31. # STANDARD RESTORATION STEPS
  32. #=================================================
  33. ynh_script_progression --message="Restoring configurations ..."
  34. ynh_restore_file --origin_path="/etc/hostapd/$app/hostapd.conf" --not_mandatory
  35. ynh_restore_file --origin_path="/etc/dnsmasq.$app/dhcpdv6.conf" --not_mandatory
  36. ynh_restore_file --origin_path="/etc/dnsmasq.$app/dhcpdv4.conf" --not_mandatory
  37. ynh_restore_file --origin_path="/usr/local/bin/$service_name"
  38. ynh_restore_file --origin_path="/etc/openvpn/scripts/route-up.d/90-${service_name}"
  39. ynh_restore_file --origin_path="/etc/openvpn/scripts/route-down.d/90-${service_name}"
  40. ynh_restore_file --origin_path="/etc/systemd/system/$service_name.service"
  41. ynh_restore_file --origin_path="/etc/systemd/system/hostapd@$app.service"
  42. yunohost service add "$service_name" --description "Creates a Wi-Fi access point" --test_status "systemctl is-active hostapd@$app" --need_lock
  43. #=================================================
  44. # START SYSTEMD SERVICE
  45. #=================================================
  46. ynh_script_progression --message="Starting the hotspot service..."
  47. hot_reload_usb_wifi_cards
  48. if [[ -z "${wifi_device:-}" ]] || ! grep -q -F "$wifi_device" <(unused_iw_devices); then
  49. wifi_device=$(unused_iw_devices | head -n 1)
  50. ynh_app_setting_set --app=$app --key=wifi_device --value="${wifi_device}"
  51. fi
  52. if [[ -z "${wifi_device:-}" ]]; then
  53. ynh_app_setting_set --app=$app --key=service_enabled --value=0
  54. else
  55. ynh_app_setting_set --app=$app --key=service_enabled --value=1
  56. fi
  57. # Start a systemd service if device is present
  58. if [[ "${wifi_device:-}" == "" ]]; then
  59. echo "WARNING: Wifi Hotspot is not started because no wifi device was found (please, check the web admin)" >&2
  60. else
  61. yunohost service start $service_name
  62. fi
  63. #=================================================
  64. # END OF SCRIPT
  65. #=================================================
  66. ynh_script_progression --message="Restoration completed for $app"