upgrade 10 KB

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