install 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226
  1. #!/bin/bash
  2. #=================================================
  3. # GENERIC START
  4. #=================================================
  5. # IMPORT GENERIC HELPERS
  6. #=================================================
  7. source _common.sh
  8. source /usr/share/yunohost/helpers
  9. #=================================================
  10. # MANAGE SCRIPT FAILURE
  11. #=================================================
  12. ynh_clean_setup () {
  13. ynh_clean_check_starting
  14. }
  15. # Exit if an error occurs during the execution of the script
  16. ynh_abort_if_errors
  17. #=================================================
  18. # RETRIEVE ARGUMENTS FROM THE MANIFEST
  19. #=================================================
  20. wifi_ssid=$YNH_APP_ARG_WIFI_SSID
  21. wifi_passphrase=$YNH_APP_ARG_WIFI_PASSPHRASE
  22. firmware_nonfree=$YNH_APP_ARG_FIRMWARE_NONFREE
  23. app=$YNH_APP_INSTANCE_NAME
  24. # the service name must match the service template files
  25. service_name='ynh-hotspot'
  26. #=================================================
  27. # CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS
  28. #=================================================
  29. ynh_script_progression --message="Validating installation parameters..."
  30. # Check arguments
  31. if [[ -z $wifi_ssid ]] || [[ -z $wifi_passphrase ]]; then
  32. ynh_die --message="Your Wifi Hotspot needs a name and a password"
  33. fi
  34. # Check passphrase length
  35. wifi_passphrase_length="$(wc -c <<< "${wifi_passphrase}")"
  36. if [[ $wifi_passphrase_length -lt 8 ]] || [[ $wifi_passphrase_length -gt 63 ]]; then
  37. ynh_die --message="Your password must from 8 to 63 characters (WPA2 passphrase)"
  38. fi
  39. # Check no special characters are present in the passphrase
  40. if [[ $wifi_passphrase =~ [^[:print:]] ]]; then
  41. ynh_die --message="Only printable ASCII characters are permitted in your password (WPA2 passphrase)"
  42. fi
  43. #=================================================
  44. # STORE SETTINGS FROM MANIFEST
  45. #=================================================
  46. ynh_script_progression --message="Storing installation settings..."
  47. ynh_app_setting_set --app=$app --key=wifi_ssid --value="$wifi_ssid"
  48. ynh_app_setting_set --app=$app --key=wifi_passphrase --value="$wifi_passphrase"
  49. ynh_app_setting_set --app=$app --key=firmware_nonfree --value="$firmware_nonfree"
  50. ynh_app_setting_set --app=$app --key=service_name --value=$service_name
  51. #=================================================
  52. # STANDARD MODIFICATIONS
  53. #=================================================
  54. # FIND AND OPEN A PORT
  55. #=================================================
  56. ynh_script_progression --message="Configuring firewall..."
  57. # Update firewall for DHCP
  58. ynh_exec_warn_less yunohost firewall allow --no-upnp --ipv6 UDP 547
  59. ynh_exec_warn_less yunohost firewall allow --no-upnp UDP 67
  60. #=================================================
  61. # INSTALL NONFREE FIRWARE IF REQUESTED
  62. #=================================================
  63. ynh_script_progression --message="Installing firmware..."
  64. export DEBIAN_FRONTEND=noninteractive
  65. # Packaged USB Wireless Device firmwares
  66. # Based on https://wiki.debian.org/WiFi#USB_Devices
  67. if [[ $firmware_nonfree -eq 1 ]]; then
  68. check_armbian_nonfree_conflict
  69. ynh_install_extra_app_dependencies --repo="deb http://deb.debian.org/debian $(ynh_get_debian_release) non-free" --package="$nonfree_firmware_packages"
  70. else
  71. pkg_dependencies="$pkg_dependencies $free_firmware_packages"
  72. fi
  73. #=================================================
  74. # INSTALL DEPENDENCIES
  75. #=================================================
  76. ynh_script_progression --message="Installing dependencies..."
  77. ynh_install_app_dependencies $pkg_dependencies
  78. #=================================================
  79. # CREATE DEDICATED USER
  80. #=================================================
  81. ynh_script_progression --message="Configuring system user..."
  82. # Create a system user
  83. ynh_system_user_create --username=$app
  84. #=================================================
  85. # SPECIFIC SETTINGS
  86. #=================================================
  87. ynh_script_progression --message="Configuring hotspot..."
  88. if [[ ! -v ip6_net ]]; then # if ip6_net not set
  89. ip6_net=none
  90. ip6_addr=none
  91. if [[ -e /tmp/.ynh-vpnclient-started ]]; then
  92. vpnclient_ip6_net=$(ynh_app_setting_get vpnclient ip6_net 2>&1)
  93. vpnclient_ip6_addr=$(ynh_app_setting_get vpnclient ip6_addr 2>&1)
  94. if [[ $vpnclient_ip6_net =~ :: && $vpnclient_ip6_addr =~ :: ]]; then
  95. ip6_net=${vpnclient_ip6_net}
  96. ip6_addr=${vpnclient_ip6_addr}
  97. fi
  98. fi
  99. fi
  100. hot_reload_usb_wifi_cards
  101. wifi_device=$(iw_devices | awk -F\| '{ print $1 }')
  102. ynh_app_setting_set --app=$app --key=multissid --value=1
  103. ynh_app_setting_set --app=$app --key=ssid_nb --value=1
  104. ynh_app_setting_set --app=$app --key=wifi_ssid --value="${wifi_ssid}"
  105. ynh_app_setting_set --app=$app --key=wifi_secure --value=1
  106. ynh_app_setting_set --app=$app --key=wifi_passphrase --value="${wifi_passphrase}"
  107. ynh_app_setting_set --app=$app --key=wifi_device --value="${wifi_device}"
  108. ynh_app_setting_set --app=$app --key=wifi_channel --value=6
  109. ynh_app_setting_set --app=$app --key=ip6_addr --value="${ip6_addr}"
  110. ynh_app_setting_set --app=$app --key=ip6_firewall --value=1
  111. ynh_app_setting_set --app=$app --key=ip6_net --value="${ip6_net}"
  112. ynh_app_setting_set --app=$app --key=dns --value="2001:913::8,2001:910:800::12,80.67.188.188,80.67.169.12"
  113. ynh_app_setting_set --app=$app --key=ip4_nat_prefix --value=10.0.242
  114. ynh_app_setting_set --app=$app --key=vpnclient --value=no
  115. if [[ -z $wifi_device ]]; then
  116. ynh_app_setting_set --app=$app --key=service_enabled --value=0
  117. else
  118. ynh_app_setting_set --app=$app --key=service_enabled --value=1
  119. fi
  120. #=================================================
  121. # COPY CONFIGS
  122. #=================================================
  123. ynh_script_progression --message="Copying configuration files..."
  124. mkdir -pm 0755 /etc/dnsmasq.dhcpd/
  125. chown root: /etc/dnsmasq.dhcpd/
  126. install -b -o root -g root -m 0644 ../conf/hostapd.conf.tpl? /etc/hostapd/
  127. install -b -o root -g root -m 0644 ../conf/dnsmasq_dhcpdv6.conf.tpl /etc/dnsmasq.dhcpd/dhcpdv6.conf.tpl
  128. install -b -o root -g root -m 0644 ../conf/dnsmasq_dhcpdv4.conf.tpl /etc/dnsmasq.dhcpd/dhcpdv4.conf.tpl
  129. # Copy init script
  130. install -o root -g root -m 0755 ../conf/$service_name /usr/local/bin/
  131. #=================================================
  132. # CONFIGURE HOSTAPD
  133. #=================================================
  134. ynh_script_progression --message="Configuring hostapd..."
  135. ## hostapd
  136. ynh_replace_string --match_string="^DAEMON_CONF=$" --replace_string="&/etc/hostapd/hostapd.conf" --target_file=/etc/init.d/hostapd
  137. ynh_store_file_checksum --file="/etc/init.d/hostapd"
  138. # We also need to put this in /etc/default/hostapd because on some setup
  139. # like RPi, the version of hostapd is different and /etc/init.d/hostapd
  140. # isnt used ... instead the service is "pure systemd" ...
  141. echo "DAEMON_CONF=/etc/hostapd/hostapd.conf" > /etc/default/hostapd
  142. # Set default inits
  143. # The boot order of these services are important, so they are disabled by default
  144. # and the ynh-hotspot service handles them.
  145. systemctl disable hostapd --quiet
  146. systemctl stop hostapd
  147. systemctl unmask hostapd # On some system e.g. RPi, for some reason hostapd is masked after install ...
  148. #=================================================
  149. # SETUP SYSTEMD
  150. #=================================================
  151. ynh_script_progression --message="Configuring a systemd service..."
  152. # Create a dedicated systemd config
  153. ynh_add_systemd_config --service=$service_name
  154. # Remove IPv6 address set if there is a VPN installed
  155. # ... but why ? ...
  156. if [[ $ip6_addr != "" ]]; then
  157. if ip -6 address show dev tun0 2> /dev/null | grep -q "${ip6_addr}/"; then
  158. ip address delete "${ip6_addr}/128" dev tun0 &> /dev/null
  159. fi
  160. fi
  161. #=================================================
  162. # INTEGRATE SERVICE IN YUNOHOST
  163. #=================================================
  164. ynh_script_progression --message="Integrating service in YunoHost..."
  165. yunohost service add $service_name --description "Creates a Wi-Fi access point" --test_status "systemctl is-active hostapd"
  166. #=================================================
  167. # START SYSTEMD SERVICE
  168. #=================================================
  169. ynh_script_progression --message="Starting a systemd service..."
  170. # Start a systemd service if device is present
  171. if [[ $wifi_device == "" ]]; then
  172. echo "WARNING: Wifi Hotspot is not started because no wifi device was found (please, check the web admin)" >&2
  173. else
  174. ynh_systemd_action --service_name=$service_name --action="start" --log_path=systemd #--line_match="Started YunoHost Wifi Hotspot"
  175. fi
  176. #=================================================
  177. # END OF SCRIPT
  178. #=================================================
  179. ynh_script_progression --message="Installation of $app completed"