1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/minetest_ynh.git synced 2024-09-03 20:36:00 +02:00
minetest_ynh/scripts/upgrade

210 lines
7.5 KiB
Text
Raw Normal View History

2017-10-20 11:48:26 +02:00
#!/bin/bash
#=================================================
2019-08-15 14:21:00 +02:00
# GENERIC START
2017-10-20 11:48:26 +02:00
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
2020-12-03 11:33:58 +01:00
ynh_script_progression --message="Loading installation settings..."
2017-10-20 11:48:26 +02:00
app=$YNH_APP_INSTANCE_NAME
2021-04-17 19:43:46 +02:00
domain=$(ynh_app_setting_get --app=$app --key=domain)
2019-10-23 12:06:42 +02:00
port=$(ynh_app_setting_get --app=$app --key=port)
2020-07-29 22:11:02 +02:00
game=$(ynh_app_setting_get --app=$app --key=game)
2019-08-15 14:21:00 +02:00
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
2019-10-22 18:03:41 +02:00
home_path=$(ynh_app_setting_get --app=$app --key=home_path)
2019-10-23 12:06:42 +02:00
pvp=$(ynh_app_setting_get --app=$app --key=pvp)
creative=$(ynh_app_setting_get --app=$app --key=creative)
damage=$(ynh_app_setting_get --app=$app --key=damage)
servername=$(ynh_app_setting_get --app=$app --key=servername)
2021-04-17 19:50:44 +02:00
is_public=$(ynh_app_setting_get --app=$app --key=is_public)
2019-10-23 12:06:42 +02:00
2019-08-15 14:21:00 +02:00
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
2020-12-03 11:33:58 +01:00
ynh_script_progression --message="Checking version..."
2021-04-17 19:43:46 +02:00
2019-10-23 13:31:21 +02:00
version=ynh_app_upstream_version
if [ "$version" = "0.01" ]; then
ynh_die --message="You can't upgrade to this version with simple upgrade. Please read the readme for upgrading https://github.com/YunoHost-Apps/minetest_ynh#additional-information ..."
fi
2020-12-03 11:33:58 +01:00
ynh_script_progression --message="Ensuring downward compatibility..."
2019-08-15 14:21:00 +02:00
# If final_path doesn't exist, create it
if [ -z $final_path ]; then
2019-10-23 12:06:42 +02:00
final_path=/opt/yunohost/$app
2019-08-15 14:21:00 +02:00
ynh_app_setting_set --app=$app --key=final_path --value=$final_path
fi
2017-10-20 11:48:26 +02:00
2021-04-17 19:43:46 +02:00
# Cleaning legacy permissions
if ynh_legacy_permissions_exists; then
ynh_legacy_permissions_delete_all
ynh_app_setting_delete --app=$app --key=is_public
fi
2017-10-20 11:48:26 +02:00
#=================================================
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
#=================================================
2020-12-03 11:33:58 +01:00
ynh_script_progression --message="Backing up the app before upgrading (may take a while)..."
2019-08-15 14:21:00 +02:00
2017-10-20 11:48:26 +02:00
# Backup the current version of the app
ynh_backup_before_upgrade
ynh_clean_setup () {
2019-10-24 04:11:14 +02:00
ynh_clean_check_starting # Need for the param line_match of ynh_systemd_action
2019-08-15 14:21:00 +02:00
# restore it if the upgrade fails
ynh_restore_upgradebackup
2017-10-20 11:48:26 +02:00
}
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
#=================================================
# STANDARD UPGRADE STEPS
#=================================================
2019-08-15 14:21:00 +02:00
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2020-12-03 11:33:58 +01:00
ynh_script_progression --message="Upgrading source files..."
2019-08-15 14:21:00 +02:00
2021-04-17 19:50:44 +02:00
if [ "$upgrade_type" == "UPGRADE_APP" ]
then
ynh_script_progression --message="Upgrading source files..." --time --weight=1
# Remove old install
ynh_secure_remove --file="$final_path"
# Download, check integrity, uncompress and patch the source from app.src
ynh_setup_source --dest_dir="$final_path"
fi
2019-10-22 18:40:18 +02:00
2019-08-15 14:21:00 +02:00
# Download, check integrity, uncompress and patch the source from app.src
ynh_setup_source --dest_dir="$final_path"
#=================================================
# UPGRADE DEPENDENCIES
#=================================================
2020-12-03 11:33:58 +01:00
ynh_script_progression --message="Upgrading dependencies..."
2019-08-15 14:21:00 +02:00
ynh_install_app_dependencies $pkg_dependencies
#=================================================
# CREATE DEDICATED USER
#=================================================
2020-12-03 11:33:58 +01:00
ynh_script_progression --message="Making sure dedicated system user exists..."
2019-08-15 14:21:00 +02:00
# Create a dedicated user (if not existing)
2019-10-25 01:55:03 +02:00
ynh_system_user_create --username=$app --home_dir=$home_path --use_shell
2019-08-15 14:21:00 +02:00
#=================================================
# SETUP SYSTEMD
#=================================================
2020-12-03 11:33:58 +01:00
ynh_script_progression --message="Upgrading systemd configuration..."
2019-08-15 14:21:00 +02:00
# Create a dedicated systemd config
ynh_add_systemd_config
2019-10-23 13:31:21 +02:00
#=================================================
# COPY CONFIG FILE
#=================================================
2019-10-25 01:55:03 +02:00
if [ -e $home_path ]
2019-10-23 13:31:21 +02:00
then
echo "Nothing to do..."
else
2019-10-25 01:55:03 +02:00
mkdir -p $home_path/.minetest/
mkdir $home_path/.minetest/worlds/
2019-10-23 13:31:21 +02:00
fi
2019-08-15 14:21:00 +02:00
#=================================================
# SPECIFIC UPGRADE
#=================================================
# Compile Minetest
2019-10-23 12:06:42 +02:00
pushd /opt/yunohost/$app
2020-07-29 22:11:02 +02:00
# Install the game
if [ $game = "capturetheflag" ]; then
# Download Capture The Flag
2020-07-29 22:33:42 +02:00
# To avoid mess remove this first
ynh_secure_remove games/capturetheflag/
# Then clone the latest version from git
2020-07-29 22:11:02 +02:00
git clone --recursive https://github.com/MT-CTF/capturetheflag.git games/capturetheflag
else
2019-08-15 14:21:00 +02:00
# Download Minetest Game
2019-10-23 12:06:42 +02:00
ynh_setup_source --dest_dir=/opt/yunohost/$app/games/minetest_game --source_id=minetest_game
2020-07-29 22:11:02 +02:00
fi
2019-10-22 17:52:18 +02:00
2019-08-15 14:21:00 +02:00
cmake . -DRUN_IN_PLACE=TRUE -DENABLE_LUAJIT=TRUE -DBUILD_CLIENT=FALSE -DBUILD_SERVER=TRUE
2019-10-22 17:52:18 +02:00
make -j$(nproc)
2019-08-15 14:21:00 +02:00
2019-10-23 12:06:42 +02:00
popd
#=================================================
# MODIFY A CONFIG FILE
#=================================================
2019-10-23 14:58:46 +02:00
ynh_backup_if_checksum_is_different --file="$home_path/.minetest/minetest.conf"
2019-10-24 16:45:31 +02:00
cp ../conf/minetest.conf $home_path/.minetest/minetest.conf
2019-10-23 14:58:46 +02:00
2020-07-29 22:11:02 +02:00
ynh_replace_string --match_string="__GAME__" --replace_string="$game" --target_file="$home_path/.minetest/minetest.conf"
2019-10-23 12:06:42 +02:00
ynh_replace_string --match_string="__APP__" --replace_string="$app" --target_file="$home_path/.minetest/minetest.conf"
ynh_replace_string --match_string="__PORT__" --replace_string="$port" --target_file="$home_path/.minetest/minetest.conf"
ynh_replace_string --match_string="__SERVERNAME__" --replace_string="$servername" --target_file="$home_path/.minetest/minetest.conf"
2021-04-17 19:43:46 +02:00
ynh_replace_string --match_string="__DOMAIN__" --replace_string="$domain" --target_file="$home_path/.minetest/minetest.conf"
2019-10-23 12:06:42 +02:00
ynh_replace_string --match_string="__ANNOUNCE__" --replace_string="$is_public" --target_file="$home_path/.minetest/minetest.conf"
ynh_replace_string --match_string="__PVP__" --replace_string="$pvp" --target_file="$home_path/.minetest/minetest.conf"
ynh_replace_string --match_string="__CREATIVE__" --replace_string="$creative" --target_file="$home_path/.minetest/minetest.conf"
ynh_replace_string --match_string="__DAMAGE__" --replace_string="$damage" --target_file="$home_path/.minetest/minetest.conf"
2019-10-23 14:58:46 +02:00
ynh_store_file_checksum --file="$home_path/.minetest/minetest.conf"
2019-08-15 14:21:00 +02:00
#=================================================
# SETUP LOGROTATE
#=================================================
2020-12-03 11:33:58 +01:00
ynh_script_progression --message="Upgrading logrotate configuration..."
2019-08-15 14:21:00 +02:00
# Use logrotate to manage app-specific logfile(s)
ynh_use_logrotate --non-append
#=================================================
# GENERIC FINALIZATION
#=================================================
# SECURE FILES AND DIRECTORIES
#=================================================
# Set permissions on app files
chown -R root: $final_path
2019-10-23 12:06:42 +02:00
chown -R $app: $home_path
2019-08-15 14:21:00 +02:00
2020-12-03 11:19:43 +01:00
#=================================================
# ADVERTISE SERVICE IN ADMIN PANEL
#=================================================
2020-12-03 11:28:43 +01:00
yunohost service add $app --description="Voxel game engine and game" --log="/var/log/$app/$app.log" --needs_exposed_ports="$port"
2020-12-03 11:19:43 +01:00
2019-08-15 14:21:00 +02:00
#=================================================
2019-10-22 17:52:18 +02:00
# RELOAD MINETEST
2019-08-15 14:21:00 +02:00
#=================================================
2020-12-03 11:33:58 +01:00
ynh_script_progression --message="Restarting Minetest..."
2019-08-15 14:21:00 +02:00
2021-04-17 19:43:46 +02:00
ynh_systemd_action --service_name=$app --action="restart" --log_path="/var/log/$app/$app.log" --line_match="listening on"
2019-08-15 14:21:00 +02:00
#=================================================
# END OF SCRIPT
#=================================================
2020-12-03 11:33:58 +01:00
ynh_script_progression --message="Upgrade of $app completed"