2021-07-07 21:27:30 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
2021-07-10 17:25:49 +02:00
|
|
|
ynh_script_progression --message="Loading installation settings..."
|
2021-07-07 21:27:30 +02:00
|
|
|
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
2022-07-29 21:01:48 +02:00
|
|
|
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
|
2021-07-07 21:27:30 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CHECK VERSION
|
|
|
|
#=================================================
|
2021-07-10 17:25:49 +02:00
|
|
|
ynh_script_progression --message="Checking version..."
|
2021-07-07 21:27:30 +02:00
|
|
|
|
|
|
|
upgrade_type=$(ynh_check_app_version_changed)
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
|
|
|
|
#=================================================
|
2021-07-10 17:25:49 +02:00
|
|
|
ynh_script_progression --message="Backing up the app before upgrading (may take a while)..."
|
2021-07-07 21:27:30 +02:00
|
|
|
|
|
|
|
# Backup the current version of the app
|
|
|
|
ynh_backup_before_upgrade
|
|
|
|
ynh_clean_setup () {
|
2022-07-29 21:01:48 +02:00
|
|
|
ynh_clean_check_starting
|
2021-07-07 21:27:30 +02:00
|
|
|
# Restore it if the upgrade fails
|
|
|
|
ynh_restore_upgradebackup
|
|
|
|
}
|
|
|
|
# Exit if an error occurs during the execution of the script
|
|
|
|
ynh_abort_if_errors
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD UPGRADE STEPS
|
|
|
|
#=================================================
|
|
|
|
# STOP SYSTEMD SERVICE
|
|
|
|
#=================================================
|
2021-07-10 17:25:49 +02:00
|
|
|
ynh_script_progression --message="Stopping a systemd service..."
|
2021-07-07 21:27:30 +02:00
|
|
|
|
2022-07-29 21:01:48 +02:00
|
|
|
ynh_systemd_action --service_name=$app --action="stop" --line_match="Stopped" --log_path="systemd"
|
2021-07-07 21:27:30 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# ENSURE DOWNWARD COMPATIBILITY
|
|
|
|
#=================================================
|
2021-07-10 17:25:49 +02:00
|
|
|
ynh_script_progression --message="Ensuring downward compatibility..."
|
2021-07-07 21:27:30 +02:00
|
|
|
|
2022-05-09 23:59:53 +02:00
|
|
|
# Change to head file
|
|
|
|
if [ -f "/etc/$app/config.d/server.toml" ]
|
2022-05-09 20:01:43 +02:00
|
|
|
then
|
2022-05-09 23:59:53 +02:00
|
|
|
ynh_delete_file_checksum --file="/etc/$app/config.d/server.toml"
|
|
|
|
mv "/etc/$app/config.d/server.toml" "/etc/$app/config.d/server.toml.head"
|
|
|
|
ynh_store_file_checksum --file="/etc/$app/config.d/server.toml.head"
|
2022-05-09 20:01:43 +02:00
|
|
|
fi
|
|
|
|
|
2021-07-07 21:27:30 +02:00
|
|
|
#=================================================
|
|
|
|
# CREATE DEDICATED USER
|
|
|
|
#=================================================
|
2021-07-10 17:25:49 +02:00
|
|
|
ynh_script_progression --message="Making sure dedicated system user exists..."
|
2021-07-07 21:27:30 +02:00
|
|
|
|
|
|
|
# Create a dedicated user (if not existing)
|
2022-07-29 21:01:48 +02:00
|
|
|
ynh_system_user_create --username=$app --home_dir="$final_path"
|
2021-07-07 21:27:30 +02:00
|
|
|
|
2022-07-29 21:01:48 +02:00
|
|
|
usermod -a -G ssl-cert $app
|
2021-07-11 19:16:01 +02:00
|
|
|
|
2021-07-07 21:27:30 +02:00
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
if [ "$upgrade_type" == "UPGRADE_APP" ]
|
|
|
|
then
|
2021-07-10 17:25:49 +02:00
|
|
|
ynh_script_progression --message="Upgrading source files..."
|
2021-07-07 21:27:30 +02:00
|
|
|
|
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
2021-07-11 19:16:01 +02:00
|
|
|
ynh_setup_source --dest_dir="$final_path/build"
|
|
|
|
ynh_secure_remove --file="$final_path/live"
|
|
|
|
mkdir -p "$final_path/live"
|
2021-07-07 21:27:30 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
chmod 750 "$final_path"
|
|
|
|
chmod -R o-rwx "$final_path"
|
2022-07-29 21:01:48 +02:00
|
|
|
chown -R $app:$app "$final_path"
|
2021-07-07 21:27:30 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# UPGRADE DEPENDENCIES
|
|
|
|
#=================================================
|
2021-07-10 17:25:49 +02:00
|
|
|
ynh_script_progression --message="Upgrading dependencies..."
|
2021-07-07 21:27:30 +02:00
|
|
|
|
2022-07-29 21:01:48 +02:00
|
|
|
ynh_install_app_dependencies $pkg_dependencies
|
2021-07-07 21:27:30 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SPECIFIC UPGRADE
|
|
|
|
#=================================================
|
2022-08-02 21:09:49 +02:00
|
|
|
# BUILD APP
|
2021-07-07 21:27:30 +02:00
|
|
|
#=================================================
|
2022-08-02 21:09:49 +02:00
|
|
|
ynh_script_progression --message="Building app..."
|
2021-07-11 19:16:01 +02:00
|
|
|
|
2021-07-14 15:13:56 +02:00
|
|
|
if [ "$upgrade_type" == "UPGRADE_APP" ]
|
|
|
|
then
|
|
|
|
# Install rustup with the toolchain needed by Gemserv
|
|
|
|
pushd "$final_path"
|
2022-07-30 16:49:03 +02:00
|
|
|
ynh_exec_warn_less ynh_exec_as $app RUSTUP_HOME="$final_path"/.rustup CARGO_HOME="$final_path"/.cargo bash -c 'curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -q -y'
|
2021-07-14 15:13:56 +02:00
|
|
|
popd
|
2021-07-11 19:16:01 +02:00
|
|
|
|
2021-07-14 15:13:56 +02:00
|
|
|
export PATH="$PATH:$final_path/.cargo/bin:$final_path/.local/bin:/usr/local/sbin"
|
2021-07-11 19:16:01 +02:00
|
|
|
|
2021-07-14 15:13:56 +02:00
|
|
|
# Compile Gemserv
|
|
|
|
pushd "$final_path"/build
|
2022-07-29 21:01:48 +02:00
|
|
|
ynh_exec_warn_less ynh_exec_as $app env PATH="$PATH" cargo build --release
|
2021-07-14 15:13:56 +02:00
|
|
|
popd
|
2021-07-11 19:16:01 +02:00
|
|
|
|
2021-07-14 15:13:56 +02:00
|
|
|
# Install Gemserv
|
|
|
|
cp -af "$final_path/build/target/release/gemserv" "$final_path/live/gemserv"
|
2021-07-11 19:16:01 +02:00
|
|
|
|
2021-07-14 15:13:56 +02:00
|
|
|
# Remove build files and rustup
|
|
|
|
ynh_secure_remove --file="$final_path/build"
|
|
|
|
ynh_secure_remove --file="$final_path/.cargo"
|
|
|
|
ynh_secure_remove --file="$final_path/.rustup"
|
|
|
|
fi
|
2021-07-07 21:27:30 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# UPDATE A CONFIG FILE
|
|
|
|
#=================================================
|
2021-07-10 17:25:49 +02:00
|
|
|
ynh_script_progression --message="Updating a configuration file..."
|
2021-07-07 21:27:30 +02:00
|
|
|
|
2021-07-11 19:16:01 +02:00
|
|
|
mkdir -p "/etc/$app/config.d/"
|
|
|
|
|
|
|
|
chmod 750 "/etc/$app"
|
|
|
|
chmod -R o-rwx "/etc/$app"
|
2022-07-29 21:01:48 +02:00
|
|
|
chown -R $app:$app "/etc/$app"
|
2021-07-11 19:16:01 +02:00
|
|
|
|
2022-05-09 18:22:10 +02:00
|
|
|
ynh_add_config --template="server.toml" --destination="/etc/$app/config.d/server.toml.head"
|
2021-07-07 21:27:30 +02:00
|
|
|
|
2022-08-02 21:09:49 +02:00
|
|
|
chmod 600 "/etc/$app/config.d/server.toml.head"
|
2022-07-29 21:01:48 +02:00
|
|
|
chown $app:$app "/etc/$app/config.d/server.toml.head"
|
2021-07-07 21:27:30 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SETUP SYSTEMD
|
|
|
|
#=================================================
|
2021-07-10 17:25:49 +02:00
|
|
|
ynh_script_progression --message="Upgrading systemd configuration..."
|
2021-07-07 21:27:30 +02:00
|
|
|
|
|
|
|
# Create a dedicated systemd config
|
|
|
|
ynh_add_systemd_config
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
# SETUP LOGROTATE
|
|
|
|
#=================================================
|
2021-07-10 17:25:49 +02:00
|
|
|
ynh_script_progression --message="Upgrading logrotate configuration..."
|
2021-07-07 21:27:30 +02:00
|
|
|
|
|
|
|
# Use logrotate to manage app-specific logfile(s)
|
|
|
|
ynh_use_logrotate --non-append
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# INTEGRATE SERVICE IN YUNOHOST
|
|
|
|
#=================================================
|
2021-07-10 17:25:49 +02:00
|
|
|
ynh_script_progression --message="Integrating service in YunoHost..."
|
2021-07-07 21:27:30 +02:00
|
|
|
|
2022-07-29 21:01:48 +02:00
|
|
|
yunohost service add $app --description="$app daemon" --log="/var/log/$app/$app.log" --needs_exposed_ports="1965"
|
2021-07-07 21:27:30 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# START SYSTEMD SERVICE
|
|
|
|
#=================================================
|
2021-07-10 17:25:49 +02:00
|
|
|
ynh_script_progression --message="Starting a systemd service..."
|
2021-07-07 21:27:30 +02:00
|
|
|
|
2022-07-29 21:01:48 +02:00
|
|
|
ynh_systemd_action --service_name=$app --action="start" --line_match="Started" --log_path="systemd"
|
2021-07-07 21:27:30 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2021-07-10 17:25:49 +02:00
|
|
|
ynh_script_progression --message="Upgrade of $app completed"
|