upgrade 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229
  1. #!/bin/bash
  2. #=================================================
  3. # GENERIC START
  4. #=================================================
  5. # IMPORT GENERIC HELPERS
  6. #=================================================
  7. source _common.sh
  8. source /usr/share/yunohost/helpers
  9. upgrade_type=$(ynh_check_app_version_changed)
  10. #=================================================
  11. # STANDARD UPGRADE STEPS
  12. #=================================================
  13. # STOP SYSTEMD SERVICE
  14. #=================================================
  15. ynh_script_progression --message="Stopping the hotspot service ... (this may take some time)"
  16. yunohost service stop $service_name
  17. #=================================================
  18. # ENSURE DOWNWARD COMPATIBILITY
  19. #=================================================
  20. ynh_script_progression --message="Ensuring downward compatibility..."
  21. if [ -d /var/www/wifiadmin/ ]; then
  22. ynh_secure_remove /var/www/wifiadmin/
  23. fi
  24. if [ -e /etc/dnsmasq.d/$app.conf ]; then
  25. ynh_secure_remove /etc/dnsmasq.d/$app.conf
  26. fi
  27. if [ ${firmware_nonfree:-} = "yes" ]; then
  28. firmware_nonfree=1
  29. ynh_app_setting_set --app=$app --key=firmware_nonfree --value=$firmware_nonfree
  30. elif [ ${firmware_nonfree:-} = "no" ]; then
  31. firmware_nonfree=0
  32. ynh_app_setting_set --app=$app --key=firmware_nonfree --value=$firmware_nonfree
  33. fi
  34. if [ -z ${service_name:-} ]; then
  35. service_name="ynh-$app"
  36. ynh_app_setting_set --app=$app --key=service_name --value=$service_name
  37. fi
  38. if [ -z ${captive_portal:-} ]; then
  39. captive_portal=0
  40. ynh_app_setting_set --app=$app --key=captive_portal --value=$captive_portal
  41. fi
  42. if [ -z ${captive_portal_url:-} ]; then
  43. captive_portal_url=""
  44. ynh_app_setting_set --app=$app --key=captive_portal_url --value=$captive_portal_url
  45. fi
  46. if [[ -n "${multissid:-}" ]] && [[ "${multissid}" -gt 1 ]]; then
  47. wifi_ssid=$(cut -d'|' -f 1 <<< ${wifi_ssid})
  48. wifi_secure=$(cut -d'|' -f 1 <<< ${wifi_secure})
  49. wifi_passphrase=$(cut -d'|' -f 1 <<< ${wifi_passphrase})
  50. advanced=$(cut -d'|' -f 1 <<< ${advanced})
  51. ip4_nat_prefix=$(cut -d'|' -f 1 <<< ${ip4_nat_prefix})
  52. ip6_net=$(cut -d'|' -f 1 <<< ${ip6_net})
  53. ip6_firewall=$(cut -d'|' -f 1 <<< ${ip6_firewall})
  54. dns=$(cut -d'|' -f 1 <<< ${dns})
  55. ynh_app_setting_set --app=$app --key=wifi_ssid --value="${wifi_ssid}"
  56. ynh_app_setting_set --app=$app --key=wifi_secure --value="${wifi_secure}"
  57. ynh_app_setting_set --app=$app --key=wifi_passphrase --value="${wifi_passphrase}"
  58. ynh_app_setting_set --app=$app --key=ip4_nat_prefix --value="${ip4_nat_prefix}"
  59. ynh_app_setting_set --app=$app --key=ip6_net --value="${ip6_net}"
  60. ynh_app_setting_set --app=$app --key=ip6_firewall --value="${ip6_firewall}"
  61. fi
  62. if [[ -n "${dns:-}" ]]; then
  63. ip6_dns=""
  64. ip4_dns=""
  65. for ip in $(echo "${dns}" | tr ',' ' '); do
  66. if [[ "$ip" == *":"* ]]; then
  67. ip6_dns+="[$ip],"
  68. else
  69. ip4_dns+="$ip,"
  70. fi
  71. done
  72. # Remove trailing ,
  73. ip6_dns="${ip6_dns%%,}"
  74. ip4_dns="${ip4_dns%%,}"
  75. if [[ -z "$(ynh_app_setting_get --app=$app --key=ip6_dns)" ]]; then
  76. ynh_app_setting_set --app=$app --key=ip6_dns --value="${ip6_dns}"
  77. fi
  78. if [[ -z "$(ynh_app_setting_get --app=$app --key=ip4_dns)" ]]; then
  79. ynh_app_setting_set --app=$app --key=ip4_dns --value="${ip4_dns}"
  80. fi
  81. ynh_app_setting_delete $app dns
  82. fi
  83. if [[ -n "${multissid:-}" ]]; then
  84. ynh_app_setting_delete --app=$app --key=multissid
  85. ynh_secure_remove --file="/etc/hostapd/hostapd.conf"
  86. ynh_secure_remove --file="/etc/hostapd/hostapd.base.conf"
  87. ynh_secure_remove --file="/etc/hostapd/hostapd.accesspoint.conf"
  88. ynh_secure_remove --file="/etc/dnsmasq.dhcpd/"
  89. fi
  90. if [[ -z "${advanced:-}" ]]; then
  91. ynh_app_setting_set --app=$app --key=advanced --value=0
  92. fi
  93. # Old stuff prior to 2.x
  94. if [ "${ip6_net:-}" == "none" ]
  95. then
  96. ip6_net=""
  97. ynh_app_setting_set --app=$app --key=ip6_net --value="$ip6_net"
  98. fi
  99. if [ -f /etc/nginx/conf.d/*.d/$app.conf ]; then
  100. ynh_secure_remove /etc/nginx/conf.d/*.d/$app.conf
  101. ynh_systemd_action --service_name=nginx --action=reload
  102. fi
  103. for php_path in $(ls /etc/php/*/fpm/pool.d/$app.conf 2> /dev/null); do
  104. ynh_secure_remove $php_path
  105. done
  106. if [ -d /var/www/$app ]; then
  107. ynh_secure_remove /var/www/$app
  108. fi
  109. [ -z "${domain:-}" ] || ynh_app_setting_delete $app domain
  110. [ -z "${path:-}" ] || ynh_app_setting_delete $app path
  111. [ -z "${install_dir:-}" ] || ynh_app_setting_delete $app install_dir
  112. if [ -e "/etc/sudoers.d/${app}_ynh" ]; then
  113. ynh_secure_remove "/etc/sudoers.d/${app}_ynh"
  114. fi
  115. if systemctl -q is-enabled hostapd
  116. then
  117. # Disable hostapd, we'll use hostapd@$app instead (for multissid support etc)
  118. systemctl disable hostapd --quiet 2>&1
  119. systemctl stop hostapd 2>&1
  120. systemctl mask hostapd 2>&1
  121. fi
  122. #=================================================
  123. # SPECIFIC UPGRADE
  124. #=================================================
  125. # COPY CONFIGS
  126. #=================================================
  127. ynh_script_progression --message="Copying configuration..."
  128. hot_reload_usb_wifi_cards
  129. if [[ -z "$wifi_device" ]] || ! grep -q -F "$wifi_device" <(unused_iw_devices); then
  130. wifi_device="$(unused_iw_devices | head -n 1)"
  131. ynh_app_setting_set --app=$app --key=wifi_device --value="${wifi_device}"
  132. fi
  133. mkdir -pm 0755 /etc/hostapd/$app/
  134. chown root: /etc/hostapd/$app/
  135. mkdir -pm 0755 /etc/dnsmasq.$app/
  136. chown root: /etc/dnsmasq.$app/
  137. touch /etc/hotspot/allowed.csv
  138. if [[ -n "${wifi_device:-}" ]]; then
  139. configure_hostapd
  140. configure_dhcp
  141. ynh_app_setting_set --app=$app --key=service_enabled --value=1
  142. else
  143. ynh_app_setting_set --app=$app --key=service_enabled --value=0
  144. wifi_device=""
  145. fi
  146. # Copy init script
  147. ynh_add_config --template="../conf/ynh-hotspot" --destination="/usr/local/bin/$service_name"
  148. chmod 0755 "/usr/local/bin/$service_name"
  149. ynh_add_config --template="../conf/captiveportal_fakedns" --destination="/usr/local/bin/captiveportal_fakedns"
  150. chmod 0755 "/usr/local/bin/captiveportal_fakedns"
  151. ynh_add_config --template="../conf/captiveportal_allow" --destination="/usr/local/bin/captiveportal_allow"
  152. chmod 0755 "/usr/local/bin/captiveportal_allow"
  153. # Copy openvpn scripts
  154. mkdir -pm 0755 /etc/openvpn/scripts
  155. mkdir -pm 0755 /etc/openvpn/scripts/route-up.d
  156. mkdir -pm 0755 /etc/openvpn/scripts/route-down.d
  157. ynh_add_config --template="../conf/openvpn_90-hotspot" --destination="/etc/openvpn/scripts/route-up.d/90-$service_name"
  158. ynh_add_config --template="../conf/openvpn_90-hotspot" --destination="/etc/openvpn/scripts/route-down.d/90-$service_name"
  159. chmod 0755 "/etc/openvpn/scripts/route-up.d/90-${service_name}"
  160. chmod 0755 "/etc/openvpn/scripts/route-down.d/90-${service_name}"
  161. #=================================================
  162. # SETUP SYSTEMD
  163. #=================================================
  164. ynh_script_progression --message="Upgrading systemd configuration..."
  165. # Create a dedicated systemd config
  166. ynh_add_systemd_config --service=$service_name
  167. # Create custom systemd config for hostapd to handle multiple wifi devices
  168. ynh_add_systemd_config --service="hostapd@$app" --template="../conf/systemd_hostapd.service"
  169. yunohost service add $service_name --description "Creates a Wi-Fi access point" --test_status "systemctl is-active hostapd@$app" --need_lock
  170. ynh_add_systemd_config --service="captiveportal_fakedns" --template="captiveportal_fakedns"
  171. yunohost service add captiveportal_fakedns --description "Captive portal dns service" --test_status "systemctl is-active captiveportal_fakedns"
  172. #=================================================
  173. # START SYSTEMD SERVICE
  174. #=================================================
  175. ynh_script_progression --message="Starting the hotspot service..."
  176. # Start a systemd service if device is present
  177. if [[ $wifi_device == "" ]]; then
  178. 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
  179. else
  180. yunohost service start $service_name
  181. fi
  182. #=================================================
  183. # END OF SCRIPT
  184. #=================================================
  185. ynh_script_progression --message="Upgrade of $app completed"