2024-02-08 22:38:16 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STOP SYSTEMD SERVICE
|
|
|
|
#=================================================
|
2024-08-31 01:11:54 +02:00
|
|
|
ynh_script_progression "Stopping $app's systemd service..."
|
2024-02-08 22:38:16 +01:00
|
|
|
|
2024-08-31 01:11:54 +02:00
|
|
|
ynh_systemctl --service="$app" --action="stop" --log_path="systemd"
|
2024-02-08 22:38:16 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# "REBUILD" THE APP (DEPLOY NEW SOURCES, RERUN NPM BUILD...)
|
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
2024-08-31 01:11:54 +02:00
|
|
|
ynh_script_progression "Upgrading source files..."
|
2024-02-08 22:38:16 +01:00
|
|
|
|
|
|
|
ynh_setup_source --dest_dir="$install_dir"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# REAPPLY SYSTEM CONFIGURATIONS
|
|
|
|
#=================================================
|
2024-08-31 01:11:54 +02:00
|
|
|
ynh_script_progression "Upgrading system configurations related to $app..."
|
2024-02-08 22:38:16 +01:00
|
|
|
|
2024-08-31 01:11:54 +02:00
|
|
|
ynh_config_add_nginx
|
2024-02-08 22:38:16 +01:00
|
|
|
|
2024-08-31 01:11:54 +02:00
|
|
|
ynh_config_add_systemd
|
2024-02-08 22:38:16 +01:00
|
|
|
|
2024-02-08 23:14:21 +01:00
|
|
|
yunohost service add "$app" --description="Customizable web calendar" --log="/var/log/$app/$app.log"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# BUILDING OPEN WEB CALENDAR
|
|
|
|
#=================================================
|
2024-08-31 01:11:54 +02:00
|
|
|
ynh_script_progression "Building $app..."
|
2024-02-08 23:14:21 +01:00
|
|
|
|
|
|
|
pushd "$install_dir"
|
|
|
|
python3 -m venv venv
|
|
|
|
venv/bin/pip install --upgrade pip
|
|
|
|
venv/bin/pip install -r requirements.txt
|
|
|
|
popd
|
2024-02-08 22:38:16 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RECONFIGURE THE APP (UPDATE CONF, APPLY MIGRATIONS...)
|
|
|
|
#=================================================
|
|
|
|
# UPDATE A CONFIG FILE
|
|
|
|
#=================================================
|
2024-08-31 01:11:54 +02:00
|
|
|
ynh_script_progression "Updating configuration..."
|
2024-02-08 22:38:16 +01:00
|
|
|
|
2024-08-31 01:11:54 +02:00
|
|
|
ynh_config_add --template="app.json" --destination="$install_dir/app.json"
|
2024-02-08 22:38:16 +01:00
|
|
|
|
|
|
|
chmod 400 "$install_dir/app.json"
|
|
|
|
chown "$app:$app" "$install_dir/app.json"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# START SYSTEMD SERVICE
|
|
|
|
#=================================================
|
2024-08-31 01:11:54 +02:00
|
|
|
ynh_script_progression "Starting $app's systemd service..."
|
2024-02-08 22:38:16 +01:00
|
|
|
|
2024-08-31 01:11:54 +02:00
|
|
|
ynh_systemctl --service="$app" --action="start" --log_path="systemd"
|
2024-02-08 22:38:16 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2024-08-31 01:11:54 +02:00
|
|
|
ynh_script_progression "Upgrade of $app completed"
|