1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/bludit_ynh.git synced 2024-09-03 18:06:13 +02:00
bludit_ynh/scripts/upgrade

49 lines
1.4 KiB
Text
Raw Normal View History

2020-10-14 12:53:53 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# CHECK VERSION
#=================================================
upgrade_type=$(ynh_check_app_version_changed)
#=================================================
Upgrade (#30) * Testing (#17) * Update README.md * Use SVG badge * Smaal fixes * Cleaning up * [autopatch] Missing ynh_abort_if_errors in change_url scripts (#6) Co-authored-by: Yunohost-Bot <> * Update manifest.json * Update manifest.json * Fix * [autopatch] Update issue and PR templates (#8) Co-authored-by: Yunohost-Bot <> * Add templates * Update check_process * Add templates * Add screenshots * Post max size * Auto-update README * Update manifest.json * Auto-update README * Create updater.yml * Fix * Cleaning up * Fix * Update manifest.json * Update manifest.json * Auto-update README * Update manifest.json * Auto-update README * Upgrade to version 4.0.0-beta2 (#16) * Upgrade to v4.0.0-beta2 * Auto-update README Co-authored-by: yunohost-bot <yunohost-bot@users.noreply.github.com> Co-authored-by: Yunohost-Bot <> * 4.3 (#15) * Upgrade to v4.0.0-beta3 * Auto-update README * rc3 * Auto-update README * php8 * Update check_process * Fix demo link * Auto-update README * reorder * Auto-update README * Upgrade to bullseye * Auto-update README Co-authored-by: YunoHost Bot <yunohost-bot@users.noreply.github.com> Co-authored-by: Yunohost-Bot <> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: tituspijean <tituspijean@outlook.com> Co-authored-by: yunohost-bot <yunohost@yunohost.org> * Revert "Testing (#17)" (#25) This reverts commit 64a84a3dc702cfeb57bd93783b5829b0c2551e46. * 3.14.1 (#28) * 3.14.1 * Auto-update README * Update upgrade Co-authored-by: yunohost-bot <yunohost@yunohost.org> * Apply example_ynh * Auto-update README Co-authored-by: Éric Gaspar <46165813+ericgaspar@users.noreply.github.com> Co-authored-by: YunoHost Bot <yunohost-bot@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: tituspijean <tituspijean@outlook.com> Co-authored-by: yunohost-bot <yunohost@yunohost.org>
2022-09-23 07:47:49 +02:00
# DOWNLOAD, CHECK AND UNPACK SOURCE
2020-10-14 12:53:53 +02:00
#=================================================
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
Upgrade (#30) * Testing (#17) * Update README.md * Use SVG badge * Smaal fixes * Cleaning up * [autopatch] Missing ynh_abort_if_errors in change_url scripts (#6) Co-authored-by: Yunohost-Bot <> * Update manifest.json * Update manifest.json * Fix * [autopatch] Update issue and PR templates (#8) Co-authored-by: Yunohost-Bot <> * Add templates * Update check_process * Add templates * Add screenshots * Post max size * Auto-update README * Update manifest.json * Auto-update README * Create updater.yml * Fix * Cleaning up * Fix * Update manifest.json * Update manifest.json * Auto-update README * Update manifest.json * Auto-update README * Upgrade to version 4.0.0-beta2 (#16) * Upgrade to v4.0.0-beta2 * Auto-update README Co-authored-by: yunohost-bot <yunohost-bot@users.noreply.github.com> Co-authored-by: Yunohost-Bot <> * 4.3 (#15) * Upgrade to v4.0.0-beta3 * Auto-update README * rc3 * Auto-update README * php8 * Update check_process * Fix demo link * Auto-update README * reorder * Auto-update README * Upgrade to bullseye * Auto-update README Co-authored-by: YunoHost Bot <yunohost-bot@users.noreply.github.com> Co-authored-by: Yunohost-Bot <> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: tituspijean <tituspijean@outlook.com> Co-authored-by: yunohost-bot <yunohost@yunohost.org> * Revert "Testing (#17)" (#25) This reverts commit 64a84a3dc702cfeb57bd93783b5829b0c2551e46. * 3.14.1 (#28) * 3.14.1 * Auto-update README * Update upgrade Co-authored-by: yunohost-bot <yunohost@yunohost.org> * Apply example_ynh * Auto-update README Co-authored-by: Éric Gaspar <46165813+ericgaspar@users.noreply.github.com> Co-authored-by: YunoHost Bot <yunohost-bot@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: tituspijean <tituspijean@outlook.com> Co-authored-by: yunohost-bot <yunohost@yunohost.org>
2022-09-23 07:47:49 +02:00
ynh_script_progression --message="Upgrading source files..." --weight=2
2020-10-14 12:53:53 +02:00
2020-10-14 13:04:23 +02:00
# Download, check integrity, uncompress and patch the source from app.src
ynh_setup_source --dest_dir="$install_dir"
2020-10-14 12:53:53 +02:00
fi
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
2022-07-05 18:43:59 +02:00
2020-10-14 12:53:53 +02:00
#=================================================
2023-04-03 12:46:34 +02:00
# REAPPLY SYSTEM CONFIGURATIONS
2020-10-14 12:53:53 +02:00
#=================================================
2023-04-03 12:46:34 +02:00
ynh_script_progression --message="Upgrading system configurations related to $app..." --weight=1
2020-10-14 12:53:53 +02:00
2021-11-22 15:56:04 +01:00
# Create a dedicated PHP-FPM config
2023-09-20 08:49:29 +02:00
ynh_add_fpm_config
2020-10-14 12:53:53 +02:00
2022-07-05 18:43:59 +02:00
# Create a dedicated NGINX config
ynh_add_nginx_config
2020-10-14 12:53:53 +02:00
#=================================================
# END OF SCRIPT
#=================================================
2021-11-22 15:56:04 +01:00
ynh_script_progression --message="Upgrade of $app completed" --last