restore 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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
  35. yunohost service add "$service_name" --description "Creates a Wi-Fi access point" --test_status "systemctl is-active hostapd@$app" --need_lock
  36. #=================================================
  37. # START SYSTEMD SERVICE
  38. #=================================================
  39. ynh_script_progression --message="Starting the hotspot service..."
  40. hot_reload_usb_wifi_cards
  41. if [[ -z "${wifi_device:-}" ]] || ! grep -q -F "$wifi_device" <(unused_iw_devices); then
  42. wifi_device=$(unused_iw_devices | head -n 1)
  43. ynh_app_setting_set --app=$app --key=wifi_device --value="${wifi_device}"
  44. fi
  45. if [[ -z "${wifi_device:-}" ]]; then
  46. ynh_app_setting_set --app=$app --key=service_enabled --value=0
  47. else
  48. ynh_app_setting_set --app=$app --key=service_enabled --value=1
  49. fi
  50. # Start a systemd service if device is present
  51. if [[ "${wifi_device:-}" == "" ]]; then
  52. echo "WARNING: Wifi Hotspot is not started because no wifi device was found (please, check the web admin)" >&2
  53. else
  54. yunohost service start $service_name
  55. fi
  56. #=================================================
  57. # END OF SCRIPT
  58. #=================================================
  59. ynh_script_progression --message="Restoration completed for $app"