upgrade 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  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_print_info "Loading installation settings..."
  13. app=$YNH_APP_INSTANCE_NAME
  14. domain=$(ynh_app_setting_get $app domain)
  15. path_url=$(ynh_app_setting_get $app path)
  16. final_path=$(ynh_app_setting_get $app final_path)
  17. firmware_nonfree=$(ynh_app_setting_get $app firmware_nonfree)
  18. #=================================================
  19. # ENSURE DOWNWARD COMPATIBILITY
  20. #=================================================
  21. ynh_print_info "Ensuring downward compatibility..."
  22. # If final_path doesn't exist, create it
  23. if [ -z $final_path ]; then
  24. final_path=/var/www/$app
  25. ynh_app_setting_set $app final_path $final_path
  26. fi
  27. #=================================================
  28. # BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
  29. #=================================================
  30. ynh_print_info "Backing up the app before upgrading (may take a while)..."
  31. # Backup the current version of the app
  32. ynh_backup_before_upgrade
  33. ynh_clean_setup () {
  34. # restore it if the upgrade fails
  35. ynh_restore_upgradebackup
  36. }
  37. # Exit if an error occurs during the execution of the script
  38. ynh_abort_if_errors
  39. #=================================================
  40. # CHECK THE PATH
  41. #=================================================
  42. # Normalize the URL path syntax
  43. path_url=$(ynh_normalize_url_path $path_url)
  44. #=================================================
  45. # STANDARD UPGRADE STEPS
  46. #=================================================
  47. # DOWNLOAD, CHECK AND UNPACK SOURCE
  48. #=================================================
  49. ynh_print_info "Upgrading source files..."
  50. # Download, check integrity, uncompress and patch the source from app.src
  51. cp -a ../sources/* ${final_path}/
  52. #=================================================
  53. # NGINX CONFIGURATION
  54. #=================================================
  55. ynh_print_info "Upgrading nginx web server configuration..."
  56. # Create a dedicated nginx config
  57. ynh_add_nginx_config
  58. #=================================================
  59. # UPGRADE DEPENDENCIES
  60. #=================================================
  61. ynh_print_info "Upgrading dependencies..."
  62. if [[ $firmware_nonfree -eq 1 ]]; then
  63. packages=$nonfree_packages
  64. else
  65. packages=$free_packages
  66. fi
  67. ynh_install_app_dependencies "$pkg_dependencies" "$packages"
  68. #=================================================
  69. # CREATE DEDICATED USER
  70. #=================================================
  71. ynh_print_info "Making sure dedicated system user exists..."
  72. # Create a dedicated user (if not existing)
  73. ynh_system_user_create $app
  74. #=================================================
  75. # PHP-FPM CONFIGURATION
  76. #=================================================
  77. ynh_print_info "Upgrading php-fpm configuration..."
  78. # Create a dedicated php-fpm config
  79. ynh_add_fpm_config
  80. #=================================================
  81. # SPECIFIC UPGRADE
  82. #=================================================
  83. # FIX CONFIGS
  84. #=================================================
  85. ### And create a backup of this file if the checksum is different. So the file will be backed up if the admin had modified it.
  86. ynh_backup_if_checksum_is_different "$final_path/config.php"
  87. ynh_replace_string "__PATH__" "${path_url}" "$final_path/config.php"
  88. # Recalculate and store the checksum of the file for the next upgrade.
  89. ynh_store_file_checksum "$final_path/config.php"
  90. #=================================================
  91. # SETUP SYSTEMD
  92. #=================================================
  93. ynh_print_info "Upgrading systemd configuration..."
  94. # Create a dedicated systemd config
  95. ynh_add_systemd_config $service_name
  96. # Make sure that the yunohost service has a description and need-lock enabled
  97. yunohost service remove $service_name
  98. yunohost service add $service_name --description "Creates a Wi-Fi access point" --need_lock
  99. yunohost service start $service_name
  100. #=================================================
  101. # GENERIC FINALIZATION
  102. #=================================================
  103. # SECURE FILES AND DIRECTORIES
  104. #=================================================
  105. # Set permissions on app files
  106. chown -R $app: ${final_path}/
  107. chmod -R 0644 ${final_path}/*
  108. find ${final_path}/ -type d -exec chmod +x {} \;
  109. #=================================================
  110. # RELOAD NGINX
  111. #=================================================
  112. ynh_print_info "Reloading nginx web server..."
  113. systemctl restart php7.0-fpm
  114. systemctl reload nginx
  115. #=================================================
  116. # END OF SCRIPT
  117. #=================================================
  118. ynh_print_info "Upgrade of $app completed"