upgrade 8.1 KB

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