2022-03-22 11:30:59 +01:00
#!/bin/bash
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# STOP SYSTEMD SERVICE
#=================================================
2024-08-15 08:23:42 +02:00
ynh_script_progression "Stopping $app's systemd service..."
2022-03-22 11:30:59 +01:00
2024-08-15 08:23:42 +02:00
ynh_systemctl --service=$app --action="stop" --log_path="systemd"
2022-03-22 11:30:59 +01:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2024-08-15 08:23:42 +02:00
ynh_script_progression "Upgrading source files..."
2022-03-22 11:30:59 +01:00
2024-08-13 21:38:30 +02:00
# Download, check integrity, uncompress and patch the source from app.src
2024-08-15 08:23:42 +02:00
ynh_setup_source --dest_dir="$install_dir" --keep="redlib.conf" --full_replace
2022-03-22 11:30:59 +01:00
2024-08-15 08:23:42 +02:00
#REMOVEME? Assuming the install dir is setup using ynh_setup_source, the proper chmod/chowns are now already applied and it shouldn't be necessary to tweak perms | chown -R $app:www-data "$install_dir"
2024-08-14 13:16:25 +02:00
chmod +x $install_dir/redlib
2022-03-22 11:30:59 +01:00
#=================================================
2023-02-26 11:36:13 +01:00
# REAPPLY SYSTEM CONFIGURATIONS
2022-03-22 11:30:59 +01:00
#=================================================
2024-08-15 08:23:42 +02:00
ynh_script_progression "Upgrading system configurations related to $app..."
2022-03-22 11:30:59 +01:00
# Create a dedicated NGINX config
2024-08-15 08:23:42 +02:00
ynh_config_add_nginx
2022-03-22 11:30:59 +01:00
2023-02-26 11:36:13 +01:00
# Create a dedicated systemd config
2024-08-15 08:23:42 +02:00
ynh_config_add_systemd
2023-02-26 11:36:13 +01:00
yunohost service add $app --description="Alternative to Reddit" --log="/var/log/$app/$app.log"
2022-03-22 11:30:59 +01:00
#=================================================
# UPDATE A CONFIG FILE
#=================================================
2024-08-15 08:23:42 +02:00
ynh_script_progression "Updating configuration..."
2022-03-22 11:30:59 +01:00
2024-08-15 08:23:42 +02:00
ynh_config_add --template="redlib.conf" --destination="$install_dir/redlib.conf"
2022-03-22 11:30:59 +01:00
2024-08-14 18:46:07 +02:00
chmod 400 "$install_dir/redlib.conf"
chown $app:$app "$install_dir/redlib.conf"
2022-03-22 11:30:59 +01:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
2024-08-15 08:23:42 +02:00
ynh_script_progression "Starting $app's systemd service..."
2022-03-22 11:30:59 +01:00
2024-08-15 08:23:42 +02:00
ynh_systemctl --service=$app --action="start" --log_path="systemd"
2022-03-22 11:30:59 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2024-08-15 08:23:42 +02:00
ynh_script_progression "Upgrade of $app completed"