restore 2.7 KB

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