2018-02-25 21:45:24 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
2022-07-22 23:51:16 +02:00
|
|
|
#=================================================
|
2018-02-25 21:45:24 +01:00
|
|
|
|
2023-09-09 11:17:52 +02:00
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
2022-07-24 11:39:51 +02:00
|
|
|
|
2023-09-09 11:17:52 +02:00
|
|
|
upgrade_type=$(ynh_check_app_version_changed)
|
2022-07-24 11:39:51 +02:00
|
|
|
|
2020-12-07 15:11:16 +01:00
|
|
|
#=================================================
|
2023-09-09 11:17:52 +02:00
|
|
|
# STANDARD UPGRADE STEPS
|
2022-07-22 23:51:16 +02:00
|
|
|
#=================================================
|
|
|
|
# ENSURE DOWNWARD COMPATIBILITY
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Ensuring downward compatibility..." --weight=1
|
|
|
|
|
|
|
|
# If lfs_key doesn't exist, create it
|
2023-09-09 11:17:52 +02:00
|
|
|
if [ -z "${lfs_key:-}" ]; then
|
2022-07-22 23:51:16 +02:00
|
|
|
lfs_key=$(ynh_string_random)
|
2023-09-09 11:17:52 +02:00
|
|
|
ynh_app_setting_set --app="$app" --key=lfs_key --value="$lfs_key"
|
2022-07-22 23:51:16 +02:00
|
|
|
fi
|
|
|
|
|
2023-09-09 11:17:52 +02:00
|
|
|
# This is not handled by the core because the previous package did not define final_path...
|
|
|
|
if [ -d "/opt/$app" ]; then
|
|
|
|
# This is the package version of the manifestv2
|
|
|
|
rsync -a "/opt/$app/" "$install_dir"
|
|
|
|
ynh_secure_remove "/opt/$app"
|
|
|
|
fi
|
2018-02-25 21:45:24 +01:00
|
|
|
|
2023-09-09 11:17:52 +02:00
|
|
|
# Move data directory
|
|
|
|
if [ -d "/home/$app" ]; then
|
|
|
|
rsync -a "/home/$app/" "$data_dir"
|
|
|
|
ynh_secure_remove "/home/$app"
|
|
|
|
fi
|
2019-02-15 11:33:29 +01:00
|
|
|
|
2023-09-09 11:17:52 +02:00
|
|
|
# Ensure the user has the correct home dir
|
|
|
|
if [ ~"$app" != "$data_dir" ]; then
|
|
|
|
usermod --home "$data_dir" "$app"
|
|
|
|
fi
|
2019-02-15 11:33:29 +01:00
|
|
|
|
2023-09-09 11:17:52 +02:00
|
|
|
# Ensure secrets are defined
|
|
|
|
# Some workaround around `gitea secret generate` not available in old versions
|
|
|
|
mv "$install_dir/gitea" "$install_dir/gitea_orig"
|
|
|
|
ynh_setup_source --dest_dir="$install_dir" --source_id=main
|
|
|
|
chmod +x "$install_dir/gitea"
|
|
|
|
_gitea_set_secrets
|
|
|
|
ynh_secure_remove "$install_dir/gitea"
|
|
|
|
mv "$install_dir/gitea_orig" "$install_dir/gitea"
|
2019-03-02 00:00:55 +01:00
|
|
|
|
2023-09-09 11:17:52 +02:00
|
|
|
# Ensure directories are created
|
|
|
|
_gitea_mkdirs
|
2019-02-15 11:33:29 +01:00
|
|
|
|
2023-09-09 11:17:52 +02:00
|
|
|
#=================================================
|
|
|
|
# STOP SYSTEMD SERVICE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Stopping a systemd service..." --weight=1
|
2019-02-15 11:33:29 +01:00
|
|
|
|
2023-09-09 11:17:52 +02:00
|
|
|
ynh_systemd_action --service_name="$app" --action="stop"
|
2019-03-02 00:16:46 +01:00
|
|
|
|
2023-09-09 11:17:52 +02:00
|
|
|
#=================================================
|
|
|
|
# REAPPLY SYSTEM CONFIGURATIONS
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Upgrading system configurations related to $app..." --weight=1
|
2018-02-25 21:45:24 +01:00
|
|
|
|
2023-09-09 11:17:52 +02:00
|
|
|
ynh_add_nginx_config
|
2022-09-05 22:43:19 +02:00
|
|
|
|
2023-09-09 11:17:52 +02:00
|
|
|
ynh_add_systemd_config
|
|
|
|
|
|
|
|
yunohost service add "$app" --log="/var/log/$app/gitea.log"
|
|
|
|
|
|
|
|
ynh_use_logrotate --non-append
|
|
|
|
|
|
|
|
ynh_add_fail2ban_config --logpath="/var/log/$app/gitea.log" --failregex=".*Failed authentication attempt for .* from <HOST>" --max_retry 5
|
2022-04-23 19:40:27 +02:00
|
|
|
|
2018-02-25 21:45:24 +01:00
|
|
|
#=================================================
|
2023-09-09 11:17:52 +02:00
|
|
|
# RECONFIGURE THE APP (UPDATE CONF, APPLY MIGRATIONS...)
|
|
|
|
#=================================================
|
|
|
|
# UPDATE A CONFIG FILE
|
2018-02-25 21:45:24 +01:00
|
|
|
#=================================================
|
2023-09-09 11:17:52 +02:00
|
|
|
ynh_script_progression --message="Updating configuration files..." --weight=1
|
2019-09-10 22:43:45 +02:00
|
|
|
|
2018-02-25 21:45:24 +01:00
|
|
|
# Clean template to fix issue : https://github.com/gogits/gogs/issues/4585
|
2023-09-09 11:17:52 +02:00
|
|
|
ynh_secure_remove --file="$install_dir/templates"
|
2018-02-25 21:45:24 +01:00
|
|
|
|
2018-06-15 22:08:34 +02:00
|
|
|
# Configure gitea with app.ini file
|
2023-09-09 11:17:52 +02:00
|
|
|
_gitea_add_config
|
|
|
|
_gitea_permissions_install_dir
|
2018-02-25 21:45:24 +01:00
|
|
|
|
2019-02-15 11:33:29 +01:00
|
|
|
#=================================================
|
|
|
|
# DB migration
|
|
|
|
#=================================================
|
2019-09-10 22:43:45 +02:00
|
|
|
ynh_script_progression --message="Upgrading database and sources..." --weight=6
|
|
|
|
|
2023-09-09 11:17:52 +02:00
|
|
|
if ynh_compare_current_package_version --comparison lt --version "1.6.4~ynh1"; then
|
|
|
|
message="Upgrade from $YNH_APP_CURRENT_VERSION was dropped. You need to run this, then upgrade to the latest version:
|
|
|
|
sudo yunohost app upgrade $app -u https://github.com/YunoHost-Apps/gitea_ynh/commit/a9ceb157032ae2290e944c1d0a255451ff2d133d"
|
|
|
|
ynh_print_info "$message"
|
|
|
|
ynh_die --message="$message" --ret_code 1
|
2019-05-07 10:56:04 +02:00
|
|
|
fi
|
2019-02-15 11:33:29 +01:00
|
|
|
|
2023-09-09 11:17:52 +02:00
|
|
|
ynh_setup_source --dest_dir="$install_dir"
|
|
|
|
chmod +x "$install_dir/gitea"
|
|
|
|
_gitea_permissions_install_dir
|
|
|
|
ynh_systemd_action --service_name="$app" --action="start" --log_path="/var/log/$app/gitea.log" --line_match="Starting new Web server: tcp:127.0.0.1:"
|
|
|
|
# FIXME: Leave the time to update the database schema
|
|
|
|
sleep 5
|
|
|
|
systemctl stop "$app"
|
2019-02-15 11:33:29 +01:00
|
|
|
|
2019-02-03 15:05:38 +01:00
|
|
|
|
2018-02-25 21:45:24 +01:00
|
|
|
#=================================================
|
2023-09-09 11:17:52 +02:00
|
|
|
# RECONFIGURE THE APP (UPDATE CONF, APPLY MIGRATIONS...)
|
2018-02-25 21:45:24 +01:00
|
|
|
#=================================================
|
2023-09-09 11:17:52 +02:00
|
|
|
# UPDATE A CONFIG FILE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Updating LDAP configuration..." --weight=1
|
|
|
|
# Should be done after DB migration I guess
|
2020-03-25 16:33:19 +01:00
|
|
|
if ! ynh_permission_exists --permission admin; then
|
|
|
|
# Update ldap config
|
2022-07-24 16:35:00 +02:00
|
|
|
ynh_replace_string --match_string="__APP__" --replace_string="$app" --target_file="../conf/login_source.sql"
|
2023-09-09 11:17:52 +02:00
|
|
|
ynh_mysql_connect_as "$db_user" "$db_pwd" "$db_name" < ../conf/login_source.sql
|
2020-03-25 16:33:19 +01:00
|
|
|
fi
|
|
|
|
|
2019-02-15 11:33:29 +01:00
|
|
|
|
|
|
|
#=================================================
|
2023-09-09 11:17:52 +02:00
|
|
|
# START SYSTEMD SERVICE
|
2019-02-15 11:33:29 +01:00
|
|
|
#=================================================
|
2023-09-09 11:17:52 +02:00
|
|
|
ynh_script_progression --message="Starting a systemd service..." --weight=1
|
2019-02-15 11:33:29 +01:00
|
|
|
|
2023-09-09 11:17:52 +02:00
|
|
|
ynh_systemd_action --service_name="$app" --action="start" --log_path="/var/log/$app/gitea.log" --line_match="Starting new Web server: tcp:127.0.0.1:"
|
2019-02-15 11:33:29 +01:00
|
|
|
|
2023-09-09 11:17:52 +02:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
2019-10-27 14:54:35 +01:00
|
|
|
|
|
|
|
ynh_script_progression --message="Upgrade of $app completed" --last
|