upgrade 10 KB

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