install 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. #!/bin/bash
  2. #=================================================
  3. # GENERIC START
  4. #=================================================
  5. # IMPORT GENERIC HELPERS
  6. #=================================================
  7. source _common.sh
  8. source /usr/share/yunohost/helpers
  9. service_name=ynh-$app
  10. ynh_app_setting_set --app=$app --key=service_name --value=$service_name
  11. #=================================================
  12. # CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS
  13. #=================================================
  14. # FIXME : we could probably implement all these checks in manifest.toml directly ?
  15. ynh_script_progression --message="Validating installation parameters..."
  16. # Check arguments
  17. if [[ -z $wifi_ssid ]] || [[ -z $wifi_passphrase ]]; then
  18. ynh_die --message="Your Wifi Hotspot needs a name and a password"
  19. fi
  20. # Check passphrase length
  21. wifi_passphrase_length="$(wc -c <<< "${wifi_passphrase}")"
  22. if [[ $wifi_passphrase_length -lt 8 ]] || [[ $wifi_passphrase_length -gt 63 ]]; then
  23. ynh_die --message="Your password must have between 8 and 63 characters (WPA2 passphrase)"
  24. fi
  25. # Check no special characters are present in the passphrase
  26. if [[ $wifi_passphrase =~ [^[:print:]] ]]; then
  27. ynh_die --message="Only printable ASCII characters are permitted in your password (WPA2 passphrase)"
  28. fi
  29. #=================================================
  30. # STANDARD MODIFICATIONS
  31. #=================================================
  32. # FIND AND OPEN A PORT
  33. #=================================================
  34. ynh_script_progression --message="Configuring firewall..."
  35. # Update firewall for DHCP
  36. # FIXME : move to manifest.toml
  37. ynh_exec_warn_less yunohost firewall allow --no-upnp --ipv6 UDP 547
  38. ynh_exec_warn_less yunohost firewall allow --no-upnp UDP 67
  39. # Meh idk where to put this ... On RPi, by default wlan is blocked
  40. if test -e /usr/sbin/rfkill && rfkill | grep wlan | grep -q -w 'blocked'
  41. then
  42. ynh_print_info "Unblocking wlan interface..."
  43. /usr/sbin/rfkill unblock wlan
  44. fi
  45. #=================================================
  46. # SPECIFIC SETTINGS
  47. #=================================================
  48. ynh_script_progression --message="Configuring hotspot..."
  49. ip6_net=""
  50. ip6_dns=""
  51. ip4_nat_prefix_index=${app##*__}
  52. if [[ "${ip4_nat_prefix_index}" == "${app}" ]]; then
  53. ip4_nat_prefix_index=0
  54. fi
  55. ip4_nat_prefix="10.${ip4_nat_prefix_index}.242"
  56. ip4_dns="${ip4_nat_prefix}.1"
  57. hot_reload_usb_wifi_cards
  58. wifi_device=$(unused_iw_devices | head -n 1)
  59. wifi_secure=1
  60. wifi_channel=6
  61. ynh_app_setting_set --app=$app --key=wifi_secure --value="${wifi_secure}"
  62. ynh_app_setting_set --app=$app --key=wifi_device --value="${wifi_device}"
  63. ynh_app_setting_set --app=$app --key=wifi_channel --value="${wifi_channel}"
  64. ynh_app_setting_set --app=$app --key=advanced --value=0
  65. ynh_app_setting_set --app=$app --key=ip6_firewall --value=1
  66. ynh_app_setting_set --app=$app --key=ip6_net --value="${ip6_net}"
  67. ynh_app_setting_set --app=$app --key=ip6_dns --value="${ip6_dns}"
  68. ynh_app_setting_set --app=$app --key=ip4_dns --value="${ip4_dns}"
  69. ynh_app_setting_set --app=$app --key=ip4_nat_prefix --value="${ip4_nat_prefix}"
  70. if [[ -z "$wifi_device" ]]; then
  71. ynh_app_setting_set --app=$app --key=service_enabled --value=0
  72. else
  73. ynh_app_setting_set --app=$app --key=service_enabled --value=1
  74. fi
  75. # We must explicitly save the wifi passphrase despite being in the install question
  76. # because password-type questions are not saved automatically
  77. ynh_app_setting_set --app=$app --key=wifi_passphrase --value="$wifi_passphrase"
  78. #=================================================
  79. # COPY CONFIGS
  80. #=================================================
  81. ynh_script_progression --message="Copying configuration files..."
  82. mkdir -pm 0755 /etc/hostapd/$app/
  83. chown root: /etc/hostapd/$app/
  84. mkdir -pm 0755 /etc/dnsmasq.$app/
  85. chown root: /etc/dnsmasq.$app/
  86. # Copy init script
  87. ynh_add_config --template="../conf/ynh-hotspot" --destination="/usr/local/bin/$service_name"
  88. chmod 0755 "/usr/local/bin/$service_name"
  89. # Copy openvpn scripts
  90. mkdir -pm 0755 /etc/openvpn/scripts
  91. mkdir -pm 0755 /etc/openvpn/scripts/route-up.d
  92. mkdir -pm 0755 /etc/openvpn/scripts/route-down.d
  93. ynh_add_config --template="../conf/openvpn_90-hotspot" --destination="/etc/openvpn/scripts/route-up.d/90-$service_name"
  94. ynh_add_config --template="../conf/openvpn_90-hotspot" --destination="/etc/openvpn/scripts/route-down.d/90-$service_name"
  95. chmod 0755 "/etc/openvpn/scripts/route-up.d/90-${service_name}"
  96. chmod 0755 "/etc/openvpn/scripts/route-down.d/90-${service_name}"
  97. #=================================================
  98. # CONFIGURE HOSTAPD
  99. #=================================================
  100. ynh_script_progression --message="Configuring hostapd..."
  101. # Disable hostapd, we'll use hostapd@$app instead (for multissid support etc)
  102. systemctl disable hostapd --quiet 2>&1
  103. systemctl stop hostapd 2>&1
  104. systemctl mask hostapd 2>&1
  105. if [[ -n "${wifi_device}" ]]; then
  106. configure_hostapd
  107. configure_dhcp
  108. fi
  109. #=================================================
  110. # SETUP SYSTEMD
  111. #=================================================
  112. ynh_script_progression --message="Configuring systemd service..."
  113. # Create a dedicated systemd config
  114. ynh_add_systemd_config --service=$service_name
  115. # Create custom systemd config for hostapd to handle multiple wifi devices
  116. ynh_add_systemd_config --service="hostapd@$app" --template="../conf/systemd_hostapd.service"
  117. yunohost service add $service_name --description "Creates a Wi-Fi access point" --test_status "systemctl is-active hostapd@$app" --need_lock
  118. #=================================================
  119. # START SYSTEMD SERVICE
  120. #=================================================
  121. ynh_script_progression --message="Starting the hotspot..."
  122. # Start a systemd service if device is present
  123. if [[ $wifi_device == "" ]]; then
  124. echo "WARNING: Wifi Hotspot is not started because no wifi device was found (check the Hotspot configuration in the webadmin > Applications > Hotspot > the config panel)" >&2
  125. else
  126. yunohost service start $service_name
  127. fi
  128. #=================================================
  129. # END OF SCRIPT
  130. #=================================================
  131. ynh_script_progression --message="Installation of $app completed"