install 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  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. # Meh idk where to put this ... On RPi, by default wlan is blocked
  61. if test -e /usr/sbin/rfkill && rfkill | grep wlan | grep -q -w 'blocked'
  62. then
  63. ynh_print_info "Unblocking wlan interface..."
  64. /usr/sbin/rfkill unblock wlan
  65. fi
  66. #=================================================
  67. # INSTALL NONFREE FIRWARE IF REQUESTED
  68. #=================================================
  69. ynh_script_progression --message="Installing firmware..."
  70. export DEBIAN_FRONTEND=noninteractive
  71. # Packaged USB Wireless Device firmwares
  72. # Based on https://wiki.debian.org/WiFi#USB_Devices
  73. if [[ $firmware_nonfree -eq 1 ]]; then
  74. check_armbian_nonfree_conflict
  75. ynh_install_extra_app_dependencies --repo="deb http://deb.debian.org/debian $(ynh_get_debian_release) non-free" --package="$nonfree_firmware_packages"
  76. else
  77. pkg_dependencies="$pkg_dependencies $free_firmware_packages"
  78. fi
  79. #=================================================
  80. # INSTALL DEPENDENCIES
  81. #=================================================
  82. ynh_script_progression --message="Installing dependencies..."
  83. ynh_install_app_dependencies $pkg_dependencies
  84. #=================================================
  85. # CREATE DEDICATED USER
  86. #=================================================
  87. ynh_script_progression --message="Configuring system user..."
  88. # Create a system user
  89. ynh_system_user_create --username=$app
  90. #=================================================
  91. # SPECIFIC SETTINGS
  92. #=================================================
  93. ynh_script_progression --message="Configuring hotspot..."
  94. hot_reload_usb_wifi_cards
  95. wifi_device=$(iw_devices | awk -F\| '{ print $1 }')
  96. ynh_app_setting_set --app=$app --key=multissid --value=1
  97. ynh_app_setting_set --app=$app --key=ssid_nb --value=1
  98. ynh_app_setting_set --app=$app --key=wifi_ssid --value="${wifi_ssid}"
  99. ynh_app_setting_set --app=$app --key=wifi_secure --value=1
  100. ynh_app_setting_set --app=$app --key=wifi_passphrase --value="${wifi_passphrase}"
  101. ynh_app_setting_set --app=$app --key=wifi_device --value="${wifi_device}"
  102. ynh_app_setting_set --app=$app --key=wifi_channel --value=6
  103. ynh_app_setting_set --app=$app --key=ip6_firewall --value=1
  104. ynh_app_setting_set --app=$app --key=ip6_net --value="${ip6_net}"
  105. ynh_app_setting_set --app=$app --key=dns --value="10.0.242.1"
  106. ynh_app_setting_set --app=$app --key=ip4_nat_prefix --value=10.0.242
  107. if [[ -z $wifi_device ]]; then
  108. ynh_app_setting_set --app=$app --key=service_enabled --value=0
  109. else
  110. ynh_app_setting_set --app=$app --key=service_enabled --value=1
  111. fi
  112. #=================================================
  113. # COPY CONFIGS
  114. #=================================================
  115. ynh_script_progression --message="Copying configuration files..."
  116. mkdir -pm 0755 /etc/dnsmasq.dhcpd/
  117. chown root: /etc/dnsmasq.dhcpd/
  118. install -b -o root -g root -m 0644 ../conf/hostapd.*.conf /etc/hostapd/
  119. install -b -o root -g root -m 0644 ../conf/dnsmasq_dhcpdv6.conf.tpl /etc/dnsmasq.dhcpd/dhcpdv6.conf.tpl
  120. install -b -o root -g root -m 0644 ../conf/dnsmasq_dhcpdv4.conf.tpl /etc/dnsmasq.dhcpd/dhcpdv4.conf.tpl
  121. # Copy init script
  122. install -o root -g root -m 0755 ../conf/$service_name /usr/local/bin/
  123. # Copy openvpn scripts
  124. mkdir -pm 0755 /etc/openvpn/scripts
  125. mkdir -pm 0755 /etc/openvpn/scripts/route-up.d
  126. mkdir -pm 0755 /etc/openvpn/scripts/route-down.d
  127. install -o root -g root -m 0755 ../conf/openvpn_90-hotspot /etc/openvpn/scripts/route-up.d/90-hotspot
  128. install -o root -g root -m 0755 ../conf/openvpn_90-hotspot /etc/openvpn/scripts/route-down.d/90-hotspot
  129. #=================================================
  130. # CONFIGURE HOSTAPD
  131. #=================================================
  132. ynh_script_progression --message="Configuring hostapd..."
  133. ## hostapd
  134. ynh_replace_string --match_string="^DAEMON_CONF=$" --replace_string="&/etc/hostapd/hostapd.conf" --target_file=/etc/init.d/hostapd
  135. ynh_store_file_checksum --file="/etc/init.d/hostapd"
  136. # We also need to put this in /etc/default/hostapd because on some setup
  137. # like RPi, the version of hostapd is different and /etc/init.d/hostapd
  138. # isnt used ... instead the service is "pure systemd" ...
  139. echo "DAEMON_CONF=/etc/hostapd/hostapd.conf" > /etc/default/hostapd
  140. # Set default inits
  141. # The boot order of these services are important, so they are disabled by default
  142. # and the ynh-hotspot service handles them.
  143. systemctl disable hostapd --quiet 2>&1
  144. systemctl stop hostapd 2>&1
  145. systemctl unmask hostapd 2>&1 # On some system e.g. RPi, for some reason hostapd is masked after install ...
  146. #=================================================
  147. # SETUP SYSTEMD
  148. #=================================================
  149. ynh_script_progression --message="Configuring a systemd service..."
  150. # Create a dedicated systemd config
  151. ynh_add_systemd_config --service=$service_name
  152. #=================================================
  153. # INTEGRATE SERVICE IN YUNOHOST
  154. #=================================================
  155. ynh_script_progression --message="Integrating service in YunoHost..."
  156. yunohost service add $service_name --description "Creates a Wi-Fi access point" --test_status "systemctl is-active hostapd"
  157. #=================================================
  158. # START SYSTEMD SERVICE
  159. #=================================================
  160. ynh_script_progression --message="Starting a systemd service..."
  161. # Start a systemd service if device is present
  162. if [[ $wifi_device == "" ]]; then
  163. echo "WARNING: Wifi Hotspot is not started because no wifi device was found (please, check the web admin)" >&2
  164. else
  165. ynh_systemd_action --service_name=$service_name --action="start" --log_path=systemd #--line_match="Started YunoHost Wifi Hotspot"
  166. fi
  167. #=================================================
  168. # END OF SCRIPT
  169. #=================================================
  170. ynh_script_progression --message="Installation of $app completed"