upgrade 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  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 [[ -n "${multissid:-}" ]] && [[ "${multissid}" -gt 1 ]]; then
  39. wifi_ssid=$(cut -d'|' -f 1 <<< ${wifi_ssid})
  40. wifi_secure=$(cut -d'|' -f 1 <<< ${wifi_secure})
  41. wifi_passphrase=$(cut -d'|' -f 1 <<< ${wifi_passphrase})
  42. advanced=$(cut -d'|' -f 1 <<< ${advanced})
  43. ip4_nat_prefix=$(cut -d'|' -f 1 <<< ${ip4_nat_prefix})
  44. ip6_net=$(cut -d'|' -f 1 <<< ${ip6_net})
  45. ip6_firewall=$(cut -d'|' -f 1 <<< ${ip6_firewall})
  46. dns=$(cut -d'|' -f 1 <<< ${dns})
  47. ynh_app_setting_set --app=$app --key=wifi_ssid --value="${wifi_ssid}"
  48. ynh_app_setting_set --app=$app --key=wifi_secure --value="${wifi_secure}"
  49. ynh_app_setting_set --app=$app --key=wifi_passphrase --value="${wifi_passphrase}"
  50. ynh_app_setting_set --app=$app --key=ip4_nat_prefix --value="${ip4_nat_prefix}"
  51. ynh_app_setting_set --app=$app --key=ip6_net --value="${ip6_net}"
  52. ynh_app_setting_set --app=$app --key=ip6_firewall --value="${ip6_firewall}"
  53. fi
  54. if [[ -n "${dns:-}" ]]; then
  55. ip6_dns=""
  56. ip4_dns=""
  57. for ip in $(echo "${dns}" | tr ',' ' '); do
  58. if [[ "$ip" == *":"* ]]; then
  59. ip6_dns+="[$ip],"
  60. else
  61. ip4_dns+="$ip,"
  62. fi
  63. done
  64. # Remove trailing ,
  65. ip6_dns="${ip6_dns%%,}"
  66. ip4_dns="${ip4_dns%%,}"
  67. if [[ -z "$(ynh_app_setting_get --app=$app --key=ip6_dns)" ]]; then
  68. ynh_app_setting_set --app=$app --key=ip6_dns --value="${ip6_dns}"
  69. fi
  70. if [[ -z "$(ynh_app_setting_get --app=$app --key=ip4_dns)" ]]; then
  71. ynh_app_setting_set --app=$app --key=ip4_dns --value="${ip4_dns}"
  72. fi
  73. ynh_app_setting_delete $app dns
  74. fi
  75. if [[ -n "${multissid:-}" ]]; then
  76. ynh_app_setting_delete --app=$app --key=multissid
  77. ynh_secure_remove --file="/etc/hostapd/hostapd.conf"
  78. ynh_secure_remove --file="/etc/hostapd/hostapd.base.conf"
  79. ynh_secure_remove --file="/etc/hostapd/hostapd.accesspoint.conf"
  80. ynh_secure_remove --file="/etc/dnsmasq.dhcpd/"
  81. fi
  82. if [[ -z "${advanced:-}" ]]; then
  83. ynh_app_setting_set --app=$app --key=advanced --value=0
  84. fi
  85. # Old stuff prior to 2.x
  86. if [ "${ip6_net:-}" == "none" ]
  87. then
  88. ip6_net=""
  89. ynh_app_setting_set --app=$app --key=ip6_net --value="$ip6_net"
  90. fi
  91. if [ -f /etc/nginx/conf.d/*.d/$app.conf ]; then
  92. ynh_secure_remove /etc/nginx/conf.d/*.d/$app.conf
  93. ynh_systemd_action --service_name=nginx --action=reload
  94. fi
  95. for php_path in $(ls /etc/php/*/fpm/pool.d/$app.conf 2> /dev/null); do
  96. ynh_secure_remove $php_path
  97. done
  98. if [ -d /var/www/$app ]; then
  99. ynh_secure_remove /var/www/$app
  100. fi
  101. [ -z "${domain:-}" ] || ynh_app_setting_delete $app domain
  102. [ -z "${path:-}" ] || ynh_app_setting_delete $app path
  103. [ -z "${install_dir:-}" ] || ynh_app_setting_delete $app install_dir
  104. if [ -e "/etc/sudoers.d/${app}_ynh" ]; then
  105. ynh_secure_remove "/etc/sudoers.d/${app}_ynh"
  106. fi
  107. if systemctl -q is-enabled hostapd
  108. then
  109. # Disable hostapd, we'll use hostapd@$app instead (for multissid support etc)
  110. systemctl disable hostapd --quiet 2>&1
  111. systemctl stop hostapd 2>&1
  112. systemctl mask hostapd 2>&1
  113. fi
  114. #=================================================
  115. # SPECIFIC UPGRADE
  116. #=================================================
  117. # COPY CONFIGS
  118. #=================================================
  119. ynh_script_progression --message="Copying configuration..."
  120. hot_reload_usb_wifi_cards
  121. if [[ -z "$wifi_device" ]] || ! grep -q -F "$wifi_device" <(unused_iw_devices); then
  122. wifi_device="$(unused_iw_devices | head -n 1)"
  123. ynh_app_setting_set --app=$app --key=wifi_device --value="${wifi_device}"
  124. fi
  125. mkdir -pm 0755 /etc/hostapd/$app/
  126. chown root: /etc/hostapd/$app/
  127. mkdir -pm 0755 /etc/dnsmasq.$app/
  128. chown root: /etc/dnsmasq.$app/
  129. if [[ -n "${wifi_device:-}" ]]; then
  130. configure_hostapd
  131. configure_dhcp
  132. ynh_app_setting_set --app=$app --key=service_enabled --value=1
  133. else
  134. ynh_app_setting_set --app=$app --key=service_enabled --value=0
  135. wifi_device=""
  136. fi
  137. # Copy init script
  138. ynh_add_config --template="../conf/ynh-hotspot" --destination="/usr/local/bin/$service_name"
  139. chmod 0755 "/usr/local/bin/$service_name"
  140. # Copy openvpn scripts
  141. mkdir -pm 0755 /etc/openvpn/scripts
  142. mkdir -pm 0755 /etc/openvpn/scripts/route-up.d
  143. mkdir -pm 0755 /etc/openvpn/scripts/route-down.d
  144. ynh_add_config --template="../conf/openvpn_90-hotspot" --destination="/etc/openvpn/scripts/route-up.d/90-$service_name"
  145. ynh_add_config --template="../conf/openvpn_90-hotspot" --destination="/etc/openvpn/scripts/route-down.d/90-$service_name"
  146. chmod 0755 "/etc/openvpn/scripts/route-up.d/90-${service_name}"
  147. chmod 0755 "/etc/openvpn/scripts/route-down.d/90-${service_name}"
  148. #=================================================
  149. # SETUP SYSTEMD
  150. #=================================================
  151. ynh_script_progression --message="Upgrading systemd configuration..."
  152. # Create a dedicated systemd config
  153. ynh_add_systemd_config --service=$service_name
  154. # Create custom systemd config for hostapd to handle multiple wifi devices
  155. ynh_add_systemd_config --service="hostapd@$app" --template="../conf/systemd_hostapd.service"
  156. yunohost service add $service_name --description "Creates a Wi-Fi access point" --test_status "systemctl is-active hostapd@$app" --need_lock
  157. #=================================================
  158. # START SYSTEMD SERVICE
  159. #=================================================
  160. ynh_script_progression --message="Starting the hotspot 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 (check the Hotspot configuration in the webadmin > Applications > Hotspot > the config panel)" >&2
  164. else
  165. yunohost service start $service_name
  166. fi
  167. #=================================================
  168. # END OF SCRIPT
  169. #=================================================
  170. ynh_script_progression --message="Upgrade of $app completed"