2014-10-20 18:55:53 +02:00
|
|
|
#!/bin/bash
|
2015-10-27 16:03:21 +01:00
|
|
|
|
2017-06-02 18:44:37 +02:00
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
2017-06-05 13:06:35 +02:00
|
|
|
source _common.sh
|
2017-06-02 18:44:37 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
2024-01-10 23:52:57 +01:00
|
|
|
### Settings are automatically loaded as bash variables
|
|
|
|
### in every app script context, therefore typically these will exist:
|
|
|
|
### - $domain
|
|
|
|
### - $path
|
|
|
|
### - $language
|
|
|
|
### - $install_dir
|
|
|
|
### - $port
|
|
|
|
### ...
|
|
|
|
|
|
|
|
### In the context of upgrade,
|
|
|
|
### - resources are automatically provisioned / updated / deleted (depending on existing resources)
|
|
|
|
### - a safety backup is automatically created by the core and will be restored if the upgrade fails
|
2019-04-18 19:58:47 +02:00
|
|
|
|
2024-02-21 16:34:51 +01:00
|
|
|
#=================================================
|
|
|
|
# STOP SYSTEMD SERVICE
|
|
|
|
#=================================================
|
2024-06-20 23:49:43 +02:00
|
|
|
ynh_script_progression "Stopping $app's systemd service..."
|
2024-02-21 16:34:51 +01:00
|
|
|
|
2024-06-20 23:49:43 +02:00
|
|
|
ynh_systemctl --service="$app" --action="stop"
|
2024-02-21 16:34:51 +01:00
|
|
|
|
2017-06-02 18:44:37 +02:00
|
|
|
#=================================================
|
2017-06-17 18:02:28 +02:00
|
|
|
# ENSURE DOWNWARD COMPATIBILITY
|
2017-06-02 18:44:37 +02:00
|
|
|
#=================================================
|
2025-01-22 09:54:07 +01:00
|
|
|
ynh_script_progression "Ensuring downward compatibility..."
|
|
|
|
|
|
|
|
ynh_app_setting_set_default --key=php_upload_max_filesize --value=50M
|
|
|
|
ynh_app_setting_set_default --key=php_post_max_size --value=50M
|
2017-06-02 18:44:37 +02:00
|
|
|
|
2024-01-10 23:52:57 +01:00
|
|
|
### N.B. : the following setting migration snippets are provided as *EXAMPLES*
|
|
|
|
### of what you may want to do in some cases (e.g. a setting was not defined on
|
|
|
|
### some legacy installs and you therefore want to initiaze stuff during upgrade)
|
2020-12-01 00:27:28 +01:00
|
|
|
|
2017-08-28 23:55:51 +02:00
|
|
|
# If db_name doesn't exist, create it
|
2024-09-03 14:11:28 +02:00
|
|
|
# ynh_app_setting_set_default --key=db_name --value="$(ynh_sanitize_dbid --db_name=$app)"
|
2017-06-02 18:44:37 +02:00
|
|
|
|
2023-01-30 19:10:14 +01:00
|
|
|
# If install_dir doesn't exist, create it
|
2024-09-03 14:11:28 +02:00
|
|
|
# ynh_app_setting_set_default --key=install_dir --value="/var/www/$app"
|
2017-08-28 23:55:51 +02:00
|
|
|
|
2017-06-02 18:44:37 +02:00
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
2024-06-20 23:49:43 +02:00
|
|
|
ynh_script_progression "Upgrading source files..."
|
2019-04-18 19:58:47 +02:00
|
|
|
|
2024-01-11 00:17:14 +01:00
|
|
|
### ynh_setup_source can wipe the destination dir if called with --full_replace.
|
|
|
|
### On upgrade, that is certainly what you want, to remove any old source file that
|
|
|
|
### does not exist in the new version of the software.
|
|
|
|
### You can list with --keep every file/directory to *not* wipe or overwrite,
|
|
|
|
### useful for configuration files, data directories, or plugins.
|
2024-01-11 01:10:40 +01:00
|
|
|
# Download, check integrity, uncompress and patch the source from manifest.toml
|
2024-01-11 00:17:14 +01:00
|
|
|
ynh_setup_source --dest_dir="$install_dir" --full_replace --keep=".env data"
|
2017-06-02 18:44:37 +02:00
|
|
|
|
2024-01-10 23:52:57 +01:00
|
|
|
### $install_dir will automatically be initialized with some decent
|
2024-09-03 13:55:06 +02:00
|
|
|
### permissions by default... however, you may need to recursively reapply
|
2024-01-10 23:52:57 +01:00
|
|
|
### ownership to all files such as after the ynh_setup_source step
|
2023-12-30 03:02:42 +01:00
|
|
|
chown -R "$app:www-data" "$install_dir"
|
2021-03-17 16:32:11 +01:00
|
|
|
|
2025-03-02 21:45:15 +01:00
|
|
|
#=================================================
|
|
|
|
# TODO - DB migration if applicable
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression "Migrating $app's database to the new data model..."
|
|
|
|
|
|
|
|
## find upstream migration script
|
|
|
|
|
2019-05-02 20:47:26 +02:00
|
|
|
#=================================================
|
2021-03-12 16:41:18 +01:00
|
|
|
# UPDATE A CONFIG FILE
|
2019-05-02 20:47:26 +02:00
|
|
|
#=================================================
|
2024-06-20 23:49:43 +02:00
|
|
|
ynh_script_progression "Updating $app's configuration files..."
|
2019-05-02 20:47:26 +02:00
|
|
|
|
2021-03-12 16:41:18 +01:00
|
|
|
### Same as during install
|
|
|
|
###
|
|
|
|
### The file will automatically be backed-up if it's found to be manually modified (because
|
2024-06-20 23:49:43 +02:00
|
|
|
### ynh_config_add keeps track of the file's checksum)
|
2020-05-30 14:59:12 +02:00
|
|
|
|
2025-03-02 21:45:15 +01:00
|
|
|
#ynh_config_add --template="some_config_file" --destination="$install_dir/some_config_file"
|
|
|
|
# there's just the nginx conf and the .env that's still available (--keep above)
|
2020-05-30 14:59:12 +02:00
|
|
|
|
2021-03-17 16:32:11 +01:00
|
|
|
# FIXME: this should be handled by the core in the future
|
2024-01-10 23:52:57 +01:00
|
|
|
### You may need to use chmod 600 instead of 400,
|
|
|
|
### for example if the app is expected to be able to modify its own config
|
2025-03-02 21:45:15 +01:00
|
|
|
#chmod 400 "$install_dir/some_config_file"
|
|
|
|
#chown "$app:$app" "$install_dir/some_config_file"
|
2021-03-17 16:32:11 +01:00
|
|
|
|
2021-03-12 16:41:18 +01:00
|
|
|
### For more complex cases where you want to replace stuff using regexes,
|
2024-06-20 23:49:43 +02:00
|
|
|
### you shoud rely on ynh_replace (which is basically a wrapper for sed)
|
2021-03-12 16:41:18 +01:00
|
|
|
### When doing so, you also need to manually call ynh_store_file_checksum
|
|
|
|
###
|
2024-06-20 23:49:43 +02:00
|
|
|
### ynh_replace --match="match_string" --replace="replace_string" --file="$install_dir/some_config_file"
|
|
|
|
### ynh_store_file_checksum "$install_dir/some_config_file"
|
2017-06-02 18:44:37 +02:00
|
|
|
|
2024-02-21 16:34:51 +01:00
|
|
|
#=================================================
|
|
|
|
# REAPPLY SYSTEM CONFIGURATIONS
|
|
|
|
#=================================================
|
2024-06-20 23:49:43 +02:00
|
|
|
ynh_script_progression "Upgrading system configurations related to $app..."
|
2024-02-21 16:34:51 +01:00
|
|
|
|
|
|
|
### This should be a literal copypaste of what happened in the install's "System configuration" section
|
|
|
|
|
2024-06-20 23:49:43 +02:00
|
|
|
ynh_config_add_nginx
|
2024-02-21 16:34:51 +01:00
|
|
|
|
2025-03-02 21:45:15 +01:00
|
|
|
#ynh_config_add_fail2ban --logpath="/var/log/nginx/${domain}-error.log" --failregex="Regex to match into the log for a failed login"
|
2019-05-02 20:44:22 +02:00
|
|
|
|
2019-02-10 15:02:38 +01:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2024-06-20 23:49:43 +02:00
|
|
|
ynh_script_progression "Upgrade of $app completed"
|