upgrade 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225
  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. domain=$(ynh_app_setting_get --app=$app --key=domain)
  15. path_url=$(ynh_app_setting_get --app=$app --key=path)
  16. final_path=$(ynh_app_setting_get --app=$app --key=final_path)
  17. firmware_nonfree=$(ynh_app_setting_get --app=$app --key=firmware_nonfree)
  18. service_name=$(ynh_app_setting_get --app=$app --key=service_name)
  19. phpversion=$(ynh_app_setting_get --app=$app --key=phpversion)
  20. #=================================================
  21. # CHECK VERSION
  22. #=================================================
  23. ynh_script_progression --message="Checking version..."
  24. upgrade_type=$(ynh_check_app_version_changed)
  25. #=================================================
  26. # BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
  27. #=================================================
  28. ynh_script_progression --message="Backing up the app before upgrading (may take a while)..."
  29. # Backup the current version of the app
  30. ynh_backup_before_upgrade
  31. ynh_clean_setup () {
  32. # Restore it if the upgrade fails
  33. ynh_restore_upgradebackup
  34. }
  35. # Exit if an error occurs during the execution of the script
  36. ynh_abort_if_errors
  37. #=================================================
  38. # STANDARD UPGRADE STEPS
  39. #=================================================
  40. # STOP SYSTEMD SERVICE
  41. #=================================================
  42. ynh_script_progression --message="Stopping a systemd service..."
  43. ynh_systemd_action --service_name=$service_name --action="stop" --log_path=systemd #--line_match="Started YunoHost Wifi Hotspot"
  44. #=================================================
  45. # ENSURE DOWNWARD COMPATIBILITY
  46. #=================================================
  47. ynh_script_progression --message="Ensuring downward compatibility..."
  48. if [ -z $phpversion ]; then
  49. phpversion=$YNH_PHP_VERSION
  50. ynh_app_setting_set --app=$app --key=phpversion --value=$phpversion
  51. fi
  52. # If final_path doesn't exist, create it
  53. if [ -z "$final_path" ]; then
  54. final_path=/var/www/$app
  55. ynh_app_setting_set --app=$app --key=final_path --value=$final_path
  56. fi
  57. if [ -d /var/www/wifiadmin/ ]; then
  58. mv /var/www/wifiadmin $final_path
  59. mv /etc/php/7.0/fpm/pool.d/wifiadmin.conf /etc/php/$phpversion/fpm/pool.d/$app.conf
  60. ynh_replace_string --match_string="wifiadmin" --replace_string="$app" --target_file=/etc/php/$phpversion/fpm/pool.d/$app.conf
  61. ynh_systemd_action --service_name=php$phpversion-fpm --action=reload
  62. fi
  63. if [ $firmware_nonfree = "yes" ]; then
  64. firmware_nonfree=1
  65. ynh_app_setting_set --app=$app --key=firmware_nonfree --value=$firmware_nonfree
  66. elif [ $firmware_nonfree = "no" ]; then
  67. firmware_nonfree=0
  68. ynh_app_setting_set --app=$app --key=firmware_nonfree --value=$firmware_nonfree
  69. fi
  70. if [ -z $service_name ]; then
  71. service_name="ynh-hotspot"
  72. ynh_app_setting_set --app=$app --key=service_name --value=$service_name
  73. fi
  74. #=================================================
  75. # CREATE DEDICATED USER
  76. #=================================================
  77. ynh_script_progression --message="Making sure dedicated system user exists..."
  78. # Create a dedicated user (if not existing)
  79. ynh_system_user_create --username=$app --home_dir=$final_path
  80. #=================================================
  81. # DOWNLOAD, CHECK AND UNPACK SOURCE
  82. #=================================================
  83. if [ "$upgrade_type" == "UPGRADE_APP" ]
  84. then
  85. ynh_script_progression --message="Upgrading source files..."
  86. # Download, check integrity, uncompress and patch the source from app.src
  87. cp -a ../sources/* ${final_path}/
  88. fi
  89. # Restore permissions on app files
  90. chmod 750 "$final_path"
  91. chmod o-rwx "$final_path"
  92. chown -R $app:www-data "$final_path"
  93. #=================================================
  94. # NGINX CONFIGURATION
  95. #=================================================
  96. ynh_script_progression --message="Upgrading NGINX web server configuration..."
  97. # Create a dedicated NGINX config
  98. ynh_add_nginx_config
  99. #=================================================
  100. # UPGRADE DEPENDENCIES
  101. #=================================================
  102. ynh_script_progression --message="Upgrading dependencies..."
  103. if [[ $firmware_nonfree -eq 1 ]]; then
  104. check_armbian_nonfree_conflict
  105. ynh_install_extra_app_dependencies --repo="deb http://deb.debian.org/debian $(ynh_get_debian_release) non-free" --package="$nonfree_firmware_packages"
  106. else
  107. pkg_dependencies="$pkg_dependencies $free_firmware_packages"
  108. fi
  109. ynh_install_app_dependencies $pkg_dependencies
  110. #=================================================
  111. # PHP-FPM CONFIGURATION
  112. #=================================================
  113. ynh_script_progression --message="Upgrading PHP-FPM configuration..."
  114. # Create a dedicated PHP-FPM config
  115. ynh_add_fpm_config
  116. #=================================================
  117. # SPECIFIC UPGRADE
  118. #=================================================
  119. # COPY CONFIGS
  120. #=================================================
  121. ynh_script_progression --message="Copying configuration..."
  122. mkdir -pm 0755 /etc/dnsmasq.dhcpd/
  123. chown root: /etc/dnsmasq.dhcpd/
  124. install -b -o root -g root -m 0644 ../conf/hostapd.conf.tpl? /etc/hostapd/
  125. install -b -o root -g root -m 0644 ../conf/dnsmasq_dhcpdv6.conf.tpl /etc/dnsmasq.dhcpd/dhcpdv6.conf.tpl
  126. install -b -o root -g root -m 0644 ../conf/dnsmasq_dhcpdv4.conf.tpl /etc/dnsmasq.dhcpd/dhcpdv4.conf.tpl
  127. # Copy init script
  128. install -o root -g root -m 0755 ../conf/$service_name /usr/local/bin/
  129. ynh_replace_string --match_string="__PHPVERSION__" --replace_string="${phpversion}" --target_file="/usr/local/bin/$service_name"
  130. #=================================================
  131. # UPDATE A CONFIG FILE
  132. #=================================================
  133. ynh_script_progression --message="Updating a configuration file..."
  134. ynh_add_config --template="config.php.tpl" --destination="$final_path/config.php"
  135. chmod 400 "$final_path/config.php"
  136. chown $app:$app "$final_path/config.php"
  137. #=================================================
  138. # SETUP SYSTEMD
  139. #=================================================
  140. ynh_script_progression --message="Upgrading systemd configuration..."
  141. # Create a dedicated systemd config
  142. ynh_add_systemd_config --service=$service_name
  143. #=================================================
  144. # GENERIC FINALIZATION
  145. #=================================================
  146. # INTEGRATE SERVICE IN YUNOHOST
  147. #=================================================
  148. ynh_script_progression --message="Integrating service in YunoHost..."
  149. yunohost service add $service_name --description "Creates a Wi-Fi access point" --test_status "systemctl is-active hostapd"
  150. #=================================================
  151. # START SYSTEMD SERVICE
  152. #=================================================
  153. ynh_script_progression --message="Starting a systemd service..."
  154. hot_reload_usb_wifi_cards
  155. wifi_device=$(bash ../conf/iw_devices | awk -F\| '{ print $1 }')
  156. if [[ -z $wifi_device ]]; then
  157. ynh_app_setting_set --app=$app --key=service_enabled --value=0
  158. wifi_device=none
  159. else
  160. ynh_app_setting_set --app=$app --key=service_enabled --value=1
  161. fi
  162. # Start a systemd service if device is present
  163. if [[ $wifi_device == none ]]; then
  164. echo "WARNING: Wifi Hotspot is not started because no wifi device was found (please, check the web admin)" >&2
  165. else
  166. ynh_systemd_action --service_name=$service_name --action="start" --log_path=systemd #--line_match="Started YunoHost Wifi Hotspot"
  167. fi
  168. #=================================================
  169. # RELOAD NGINX
  170. #=================================================
  171. ynh_script_progression --message="Reloading NGINX web server..."
  172. ynh_systemd_action --service_name=nginx --action=reload
  173. #=================================================
  174. # END OF SCRIPT
  175. #=================================================
  176. ynh_script_progression --message="Upgrade of $app completed"