1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/phpipam_ynh.git synced 2024-09-03 19:56:39 +02:00
phpipam_ynh/scripts/upgrade

62 lines
1.8 KiB
Text
Raw Permalink Normal View History

2019-08-27 14:42:40 +02:00
#!/bin/bash
2021-07-06 11:23:03 +02:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# CHECK VERSION
#=================================================
upgrade_type=$(ynh_check_app_version_changed)
2019-08-27 14:42:40 +02:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2021-07-06 11:23:03 +02:00
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
2021-07-06 11:41:24 +02:00
ynh_script_progression --message="Upgrading source files..." --weight=1
2021-07-06 11:23:03 +02:00
# Download, check integrity, uncompress and patch the source from app.src
2023-05-22 17:43:38 +02:00
ynh_setup_source --dest_dir="$install_dir"
2021-07-06 11:23:03 +02:00
fi
2023-05-22 17:43:38 +02:00
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
2019-08-27 14:42:40 +02:00
#=================================================
# NGINX CONFIGURATION
#=================================================
2021-07-06 11:41:24 +02:00
ynh_script_progression --message="Upgrading NGINX web server configuration..." --weight=1
2019-08-27 14:42:40 +02:00
2021-07-06 11:23:03 +02:00
# Create a dedicated NGINX config
ynh_add_nginx_config
2019-08-27 14:42:40 +02:00
2021-07-06 11:23:03 +02:00
# Create a dedicated PHP-FPM config
2023-11-24 17:23:01 +01:00
ynh_add_fpm_config
2023-05-22 17:52:07 +02:00
# Use logrotate to manage app-specific logfile(s)
ynh_use_logrotate --non-append
2019-08-27 14:42:40 +02:00
2021-07-06 11:23:03 +02:00
#=================================================
# UPDATE A CONFIG FILE
#=================================================
2021-07-06 11:41:24 +02:00
ynh_script_progression --message="Updating a configuration file..." --weight=1
2019-08-27 14:42:40 +02:00
2023-05-22 17:43:38 +02:00
ynh_add_config --template="../conf/config.dist.php" --destination="$install_dir/config.php"
2019-08-27 14:42:40 +02:00
2023-05-22 17:43:38 +02:00
chmod 400 "$install_dir/config.php"
chown $app: "$install_dir/config.php"
2021-07-06 11:23:03 +02:00
#=================================================
# END OF SCRIPT
#=================================================
2019-08-27 14:42:40 +02:00
2021-07-06 11:41:24 +02:00
ynh_script_progression --message="Upgrade of $app completed" --last