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

67 lines
2.2 KiB
Text
Raw Normal View History

2022-03-22 11:30:59 +01:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# STANDARD UPGRADE STEPS
#=================================================
# STOP SYSTEMD SERVICE
#=================================================
ynh_script_progression --message="Stopping a systemd service..." --weight=1
ynh_systemd_action --service_name=$app --action="stop" --log_path="systemd"
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2024-08-13 21:38:30 +02:00
ynh_script_progression --message="Upgrading source files..." --weight=5
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-13 21:49:46 +02:00
ynh_setup_source --dest_dir="$install_dir" --keep=".env"
2022-03-22 11:30:59 +01:00
2022-11-04 21:40:27 +01:00
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
#=================================================
2023-02-26 11:36:13 +01:00
ynh_script_progression --message="Upgrading system configurations related to $app..." --weight=1
2022-03-22 11:30:59 +01:00
# Create a dedicated NGINX config
ynh_add_nginx_config
2023-02-26 11:36:13 +01:00
# Create a dedicated systemd config
ynh_add_systemd_config
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
#=================================================
#ynh_script_progression --message="Updating a configuration file..." --weight=1
2024-08-13 21:49:46 +02:00
# ynh_add_config --template=".env" --destination="$install_dir/.env"
2022-03-22 11:30:59 +01:00
2024-08-13 21:49:46 +02:00
# chmod 400 "$install_dir/.env"
# chown $app:$app "$install_dir/.env"
2022-03-22 11:30:59 +01:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
ynh_script_progression --message="Starting a systemd service..." --weight=2
ynh_systemd_action --service_name=$app --action="start" --log_path="systemd"
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Upgrade of $app completed" --last