upgrade 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276
  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. # LOAD SETTINGS
  11. #=================================================
  12. ynh_script_progression --message="Loading installation settings..."
  13. app=$YNH_APP_INSTANCE_NAME
  14. firmware_nonfree=$(ynh_app_setting_get --app=$app --key=firmware_nonfree)
  15. service_name=$(ynh_app_setting_get --app=$app --key=service_name)
  16. wifi_ssid=$(ynh_app_setting_get --app=$app --key=wifi_ssid)
  17. wifi_secure=$(ynh_app_setting_get --app=$app --key=wifi_secure)
  18. wifi_passphrase=$(ynh_app_setting_get --app=$app --key=wifi_passphrase)
  19. wifi_channel=$(ynh_app_setting_get --app=$app --key=wifi_channel)
  20. advanced=$(ynh_app_setting_get --app=$app --key=advanced)
  21. ip4_nat_prefix=$(ynh_app_setting_get --app=$app --key=ip4_nat_prefix)
  22. ip6_net=$(ynh_app_setting_get --app=$app --key=ip6_net)
  23. ip6_firewall=$(ynh_app_setting_get --app=$app --key=ip6_firewall)
  24. dns=$(ynh_app_setting_get --app=$app --key=dns)
  25. multissid=$(ynh_app_setting_get --app=$app --key=multissid)
  26. #=================================================
  27. # CHECK VERSION
  28. #=================================================
  29. ynh_script_progression --message="Checking version..."
  30. upgrade_type=$(ynh_check_app_version_changed)
  31. #=================================================
  32. # BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
  33. #=================================================
  34. ynh_script_progression --message="Backing up the app before upgrading (may take a while)..."
  35. # Backup the current version of the app
  36. ynh_backup_before_upgrade
  37. ynh_clean_setup () {
  38. # Restore it if the upgrade fails
  39. ynh_restore_upgradebackup
  40. }
  41. # Exit if an error occurs during the execution of the script
  42. ynh_abort_if_errors
  43. #=================================================
  44. # STANDARD UPGRADE STEPS
  45. #=================================================
  46. # STOP SYSTEMD SERVICE
  47. #=================================================
  48. ynh_script_progression --message="Stopping the hotspot service ... (this may take some time)"
  49. ynh_systemd_action --service_name=$service_name --action="stop" --log_path=systemd #--line_match="Started YunoHost Wifi Hotspot"
  50. #=================================================
  51. # ENSURE DOWNWARD COMPATIBILITY
  52. #=================================================
  53. ynh_script_progression --message="Ensuring downward compatibility..."
  54. if [ -d /var/www/wifiadmin/ ]; then
  55. ynh_secure_remove /var/www/wifiadmin/
  56. fi
  57. if [ $firmware_nonfree = "yes" ]; then
  58. firmware_nonfree=1
  59. ynh_app_setting_set --app=$app --key=firmware_nonfree --value=$firmware_nonfree
  60. elif [ $firmware_nonfree = "no" ]; then
  61. firmware_nonfree=0
  62. ynh_app_setting_set --app=$app --key=firmware_nonfree --value=$firmware_nonfree
  63. fi
  64. if [ -z $service_name ]; then
  65. service_name="ynh-$app"
  66. ynh_app_setting_set --app=$app --key=service_name --value=$service_name
  67. fi
  68. if [[ -n ${multissid} ]] && [[ ${multissid} -gt 1 ]]; then
  69. wifi_ssid=$(cut -d'|' -f 1 <<< ${wifi_ssid})
  70. wifi_secure=$(cut -d'|' -f 1 <<< ${wifi_secure})
  71. wifi_passphrase=$(cut -d'|' -f 1 <<< ${wifi_passphrase})
  72. advanced=$(cut -d'|' -f 1 <<< ${advanced})
  73. ip4_nat_prefix=$(cut -d'|' -f 1 <<< ${ip4_nat_prefix})
  74. ip6_net=$(cut -d'|' -f 1 <<< ${ip6_net})
  75. ip6_firewall=$(cut -d'|' -f 1 <<< ${ip6_firewall})
  76. dns=$(cut -d'|' -f 1 <<< ${dns})
  77. ynh_app_setting_set --app=$app --key=wifi_ssid --value="${wifi_ssid}"
  78. ynh_app_setting_set --app=$app --key=wifi_secure --value="${wifi_secure}"
  79. ynh_app_setting_set --app=$app --key=wifi_passphrase --value="${wifi_passphrase}"
  80. ynh_app_setting_set --app=$app --key=ip4_nat_prefix --value="${ip4_nat_prefix}"
  81. ynh_app_setting_set --app=$app --key=ip6_net --value="${ip6_net}"
  82. ynh_app_setting_set --app=$app --key=ip6_firewall --value="${ip6_firewall}"
  83. fi
  84. if [[ -n "${dns}" ]]; then
  85. ip6_dns=""
  86. ip4_dns=""
  87. for ip in $(echo "${dns}" | tr ',' ' '); do
  88. if [[ "$ip" == *":"* ]]; then
  89. ip6_dns+="[$ip],"
  90. else
  91. ip4_dns+="$ip,"
  92. fi
  93. done
  94. # Remove trailing ,
  95. ip6_dns="${ip6_dns%%,}"
  96. ip4_dns="${ip4_dns%%,}"
  97. if [[ -z "$(ynh_app_setting_get --app=$app --key=ip6_dns)" ]]; then
  98. ynh_app_setting_set --app=$app --key=ip6_dns --value="${ip6_dns}"
  99. fi
  100. if [[ -z "$(ynh_app_setting_get --app=$app --key=ip4_dns)" ]]; then
  101. ynh_app_setting_set --app=$app --key=ip4_dns --value="${ip4_dns}"
  102. fi
  103. ynh_app_setting_delete $app dns
  104. else
  105. ip6_dns=$(ynh_app_setting_get --app=$app --key=ip6_dns)
  106. ip4_dns=$(ynh_app_setting_get --app=$app --key=ip4_dns)
  107. fi
  108. if [[ -n ${multissid} ]]; then
  109. ynh_app_setting_delete --app=$app --key=multissid
  110. ynh_secure_remove --file="/etc/hostapd/hostapd.conf"
  111. ynh_secure_remove --file="/etc/hostapd/hostapd.base.conf"
  112. ynh_secure_remove --file="/etc/hostapd/hostapd.accesspoint.conf"
  113. ynh_secure_remove --file="/etc/dnsmasq.dhcpd/"
  114. fi
  115. if [[ -z ${advanced} ]]; then
  116. ynh_app_setting_set --app=$app --key=adanced --value=0
  117. fi
  118. # Old stuff prior to 2.x
  119. ip6_net=$(ynh_app_setting_get --app=$app --key=ip6_net)
  120. if [ "$ip6_net" == "none" ]
  121. then
  122. ip6_net=""
  123. ynh_app_setting_set --app=$app --key=ip6_net --value="$ip6_net"
  124. fi
  125. if [ -f /etc/nginx/conf.d/*.d/$app.conf ]; then
  126. ynh_secure_remove /etc/nginx/conf.d/*.d/$app.conf
  127. ynh_systemd_action --service_name=nginx --action=reload
  128. fi
  129. for php_path in $(ls /etc/php/*/fpm/pool.d/$app.conf 2> /dev/null); do
  130. ynh_secure_remove $php_path
  131. done
  132. if [ -d /var/www/$app ]; then
  133. ynh_secure_remove /var/www/$app
  134. fi
  135. [ -z "$(ynh_app_setting_get $app domain)" ] || ynh_app_setting_delete $app domain
  136. [ -z "$(ynh_app_setting_get $app path)" ] || ynh_app_setting_delete $app path
  137. [ -z "$(ynh_app_setting_get $app final_path)" ] || ynh_app_setting_delete $app final_path
  138. if [ -e "/etc/sudoers.d/${app}_ynh" ]; then
  139. ynh_secure_remove "/etc/sudoers.d/${app}_ynh"
  140. fi
  141. #=================================================
  142. # CREATE DEDICATED USER
  143. #=================================================
  144. ynh_script_progression --message="Making sure dedicated system user exists..."
  145. # Create a dedicated user (if not existing)
  146. ynh_system_user_create --username=$app
  147. #=================================================
  148. # UPGRADE DEPENDENCIES
  149. #=================================================
  150. ynh_script_progression --message="Upgrading dependencies..."
  151. if [[ $firmware_nonfree -eq 1 ]]; then
  152. check_armbian_nonfree_conflict
  153. ynh_install_extra_app_dependencies --repo="deb http://deb.debian.org/debian $(ynh_get_debian_release) non-free" --package="$nonfree_firmware_packages"
  154. else
  155. pkg_dependencies="$pkg_dependencies $free_firmware_packages"
  156. fi
  157. ynh_install_app_dependencies $pkg_dependencies
  158. #=================================================
  159. # SPECIFIC UPGRADE
  160. #=================================================
  161. # COPY CONFIGS
  162. #=================================================
  163. ynh_script_progression --message="Copying configuration..."
  164. hot_reload_usb_wifi_cards
  165. wifi_device=$(iw_devices | awk -F\| '{ print $1 }')
  166. mkdir -pm 0755 /etc/hostapd/$app/
  167. chown root: /etc/hostapd/$app/
  168. mkdir -pm 0755 /etc/dnsmasq.$app/
  169. chown root: /etc/dnsmasq.$app/
  170. install -b -o root -g root -m 0644 ../conf/hostapd.conf.tpl /etc/hostapd/$app/hostapd.conf.tpl
  171. install -b -o root -g root -m 0644 ../conf/dnsmasq_dhcpdv6.conf.tpl /etc/dnsmasq.$app/dhcpdv6.conf.tpl
  172. install -b -o root -g root -m 0644 ../conf/dnsmasq_dhcpdv4.conf.tpl /etc/dnsmasq.$app/dhcpdv4.conf.tpl
  173. if [[ -n ${wifi_device} ]]; then
  174. configure_hostapd
  175. configure_dhcp
  176. fi
  177. # Copy init script
  178. ynh_add_config --template="../conf/ynh-hotspot" --destination="/usr/local/bin/$service_name"
  179. chmod 0755 "/usr/local/bin/$service_name"
  180. # Copy openvpn scripts
  181. mkdir -pm 0755 /etc/openvpn/scripts
  182. mkdir -pm 0755 /etc/openvpn/scripts/route-up.d
  183. mkdir -pm 0755 /etc/openvpn/scripts/route-down.d
  184. ynh_add_config --template="../conf/openvpn_90-hotspot" --destination="/etc/openvpn/scripts/route-up.d/90-$service_name"
  185. ynh_add_config --template="../conf/openvpn_90-hotspot" --destination="/etc/openvpn/scripts/route-down.d/90-$service_name"
  186. chmod 0755 "/etc/openvpn/scripts/route-up.d/90-${service_name}"
  187. chmod 0755 "/etc/openvpn/scripts/route-down.d/90-${service_name}"
  188. #=================================================
  189. # SETUP SYSTEMD
  190. #=================================================
  191. ynh_script_progression --message="Upgrading systemd configuration..."
  192. # Create a dedicated systemd config
  193. ynh_add_systemd_config --service=$service_name
  194. # Create custom systemd config for hostapd to handle multiple wifi devices
  195. ynh_add_systemd_config --service="hostapd@$app" --template="../conf/systemd_hostapd.service"
  196. #=================================================
  197. # GENERIC FINALIZATION
  198. #=================================================
  199. # INTEGRATE SERVICE IN YUNOHOST
  200. #=================================================
  201. ynh_script_progression --message="Integrating service in YunoHost..."
  202. yunohost service add $service_name --description "Creates a Wi-Fi access point" --test_status "systemctl is-active hostapd@$app" --needs_exposed_ports 547 67
  203. #=================================================
  204. # START SYSTEMD SERVICE
  205. #=================================================
  206. ynh_script_progression --message="Starting the hotspot service..."
  207. if [[ -z $wifi_device ]]; then
  208. ynh_app_setting_set --app=$app --key=service_enabled --value=0
  209. wifi_device=""
  210. else
  211. ynh_app_setting_set --app=$app --key=service_enabled --value=1
  212. fi
  213. # Start a systemd service if device is present
  214. if [[ $wifi_device == "" ]]; then
  215. echo "WARNING: Wifi Hotspot is not started because no wifi device was found (please, check the web admin)" >&2
  216. else
  217. ynh_systemd_action --service_name=$service_name --action="start" --log_path=systemd #--line_match="Started YunoHost Wifi Hotspot"
  218. fi
  219. #=================================================
  220. # END OF SCRIPT
  221. #=================================================
  222. ynh_script_progression --message="Upgrade of $app completed"