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

61 lines
1.8 KiB
Text
Raw Normal View History

2015-01-28 07:21:27 +01:00
#!/bin/bash
2019-05-24 04:21:43 +02:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# CHECK VERSION
#=================================================
upgrade_type=$(ynh_check_app_version_changed)
#=================================================
# STANDARD UPGRADE STEPS
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
2019-05-24 11:23:08 +02:00
ynh_script_progression --message="Upgrading source files..." --weight=2
2019-05-24 04:21:43 +02:00
# Download, check integrity, uncompress and patch the source from app.src
ynh_setup_source --dest_dir="$install_dir"
2019-05-24 04:21:43 +02:00
fi
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
2021-09-11 08:19:13 +02:00
2019-05-24 04:21:43 +02:00
#=================================================
# PHP-FPM CONFIGURATION
#=================================================
2020-11-13 15:19:21 +01:00
ynh_script_progression --message="Upgrading PHP-FPM configuration..." --weight=5
2019-05-24 04:21:43 +02:00
2020-11-13 15:19:21 +01:00
# Create a dedicated PHP-FPM config
2023-09-22 17:30:04 +02:00
ynh_add_fpm_config
2019-05-24 04:21:43 +02:00
# Create a dedicated NGINX config
ynh_add_nginx_config
2019-05-24 04:21:43 +02:00
#=================================================
# MODIFY A CONFIG FILE
#=================================================
ynh_script_progression --message="Adding a configuration file..." --weight=1
2019-05-24 04:21:43 +02:00
ynh_add_config --template="../conf/config.php.example" --destination="$install_dir/config/config.php"
2023-10-09 18:25:57 +02:00
chmod 644 "$install_dir/config/config.php"
chown $app:$app "$install_dir/config/config.php"
2019-05-24 04:21:43 +02:00
#=================================================
# END OF SCRIPT
#=================================================
2019-05-24 11:23:08 +02:00
ynh_script_progression --message="Upgrade of $app completed" --last