2023-05-07 21:21:34 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
upgrade_type=$(ynh_check_app_version_changed)
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STOP SYSTEMD SERVICE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Stopping a systemd service..." --weight=1
|
|
|
|
|
|
|
|
ynh_systemd_action --service_name=$app --action="stop" --log_path="/var/log/$app/$app.log"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# "REBUILD" THE APP (DEPLOY NEW SOURCES, RERUN NPM BUILD...)
|
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
2023-05-10 13:23:45 +02:00
|
|
|
ynh_script_progression --message="Setting up source files..." --weight=1
|
2023-05-07 21:21:34 +02:00
|
|
|
|
2023-05-10 13:23:45 +02:00
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
|
|
|
ynh_setup_source --dest_dir="$install_dir"
|
2023-05-07 21:21:34 +02:00
|
|
|
|
2023-05-10 13:23:45 +02:00
|
|
|
chmod 750 "$install_dir"
|
|
|
|
chmod -R o-rwx "$install_dir"
|
2023-05-07 21:21:34 +02:00
|
|
|
chown -R $app:www-data "$install_dir"
|
|
|
|
|
|
|
|
#=================================================
|
2023-05-10 13:23:45 +02:00
|
|
|
# BUILD APP
|
2023-05-07 21:21:34 +02:00
|
|
|
#=================================================
|
2023-05-10 13:38:22 +02:00
|
|
|
ynh_script_progression --message="Building app... This may take quiete some time" --weight=30
|
2023-05-07 21:21:34 +02:00
|
|
|
|
2023-05-10 13:23:45 +02:00
|
|
|
pushd $install_dir
|
|
|
|
ynh_use_nodejs
|
|
|
|
ynh_exec_warn_less ynh_exec_as $app env $ynh_node_load_PATH yarn install --network-timeout=30000
|
|
|
|
ynh_exec_warn_less ynh_exec_as $app env $ynh_node_load_PATH yarn run build
|
|
|
|
#ynh_exec_warn_less yarn start
|
|
|
|
popd
|
2023-05-07 21:21:34 +02:00
|
|
|
|
2023-05-10 13:23:45 +02:00
|
|
|
chmod 750 "$install_dir"
|
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R $app:$app "$install_dir"
|
2023-05-07 21:21:34 +02:00
|
|
|
|
2023-05-10 13:23:45 +02:00
|
|
|
#=================================================
|
|
|
|
# SETUP SYSTEMD
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Configuring a systemd service..."
|
2023-05-07 21:21:34 +02:00
|
|
|
|
2023-05-10 13:23:45 +02:00
|
|
|
# Create a dedicated systemd config
|
2023-05-07 21:21:34 +02:00
|
|
|
ynh_add_systemd_config
|
|
|
|
|
2023-05-10 13:23:45 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
2023-05-10 13:49:17 +02:00
|
|
|
# LOGROTATE
|
2023-05-10 13:23:45 +02:00
|
|
|
#=================================================
|
2023-05-10 13:49:17 +02:00
|
|
|
ynh_script_progression --message="Configuring logrotate to manage application logfiles" --weight=1
|
2023-05-10 13:23:45 +02:00
|
|
|
|
|
|
|
# Use logrotate to manage application logfile(s)
|
2023-05-10 13:49:17 +02:00
|
|
|
ynh_use_logrotate --specific_user=$app
|
|
|
|
touch /var/log/$app/$app.log
|
|
|
|
chown -R $app:www-data /var/log/$app/
|
2023-05-07 21:21:34 +02:00
|
|
|
|
2023-05-10 13:23:45 +02:00
|
|
|
#=================================================
|
|
|
|
# INTEGRATE SERVICE IN YUNOHOST
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Integrating service in YunoHost..."
|
2023-05-07 21:21:34 +02:00
|
|
|
|
2023-05-10 13:23:45 +02:00
|
|
|
yunohost service add $app --log="/var/log/$app/$app.log"
|
2023-05-07 21:21:34 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RECONFIGURE THE APP (UPDATE CONF, APPLY MIGRATIONS...)
|
|
|
|
#=================================================
|
|
|
|
# UPDATE A CONFIG FILE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Updating a configuration file..." --weight=1
|
|
|
|
|
2023-05-10 13:23:45 +02:00
|
|
|
ynh_add_config --template="../conf/jellyseerr.conf" --destination="$install_dir/jellyseerr.conf"
|
|
|
|
|
|
|
|
chmod 600 "$install_dir/jellyseerr.conf"
|
|
|
|
chown $app:$app "$install_dir/jellyseerr.conf"
|
2023-05-07 21:21:34 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# START SYSTEMD SERVICE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Starting a systemd service..." --weight=1
|
|
|
|
|
2023-05-10 18:07:39 +02:00
|
|
|
ynh_exec_warn_less ynh_systemd_action --service_name=$app --action="start" --log_path="/var/log/$app/$app.log" --line_match="Starting Overseer version"
|
|
|
|
|
|
|
|
|
2023-05-07 21:21:34 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_script_progression --message="Upgrade of $app completed" --last
|