1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/haste_ynh.git synced 2024-09-03 20:36:28 +02:00
haste_ynh/scripts/upgrade
Éric Gaspar 91ff943585 cleaning
2024-08-31 21:50:40 +02:00

83 lines
2.5 KiB
Bash
Executable file

#!/bin/bash
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# STOP SYSTEMD SERVICE
#=================================================
ynh_script_progression "Stopping $app's systemd service..."
ynh_systemctl --service=$app --action="stop"
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
ynh_script_progression "Upgrading source files..."
ynh_setup_source --dest_dir="$install_dir" --keep="config.js"
#=================================================
# UPGRADE NODEJS
#=================================================
ynh_script_progression "Upgrading dependencies..."
ynh_nodejs_install
#=================================================
# NGINX CONFIGURATION
#=================================================
ynh_script_progression "Upgrading NGINX web server configuration..."
ynh_config_add_nginx
ynh_config_add_logrotate
ynh_config_add_systemd
yunohost service add $app --description="Haste is a pastebin software" --log="/var/log/$app/$app.log"
#=================================================
# UPGRADE NPM MODULES
#=================================================
ynh_script_progression "Installing $app..."
pushd "$install_dir"
ynh_hide_warnings ynh_exec_as_app npm install
popd
#=================================================
# UPGRADE HASTE CONFIGURATION
#=================================================
# Replace ajax.googleapis by local file
cp ../sources/jquery.min.js "$install_dir/static/jquery.min.js"
ynh_replace --match="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" --replace="jquery.min.js" --file="$install_dir/static/index.html"
#=================================================
# UPGRADE HASTE BINARY
#=================================================
ynh_script_progression "Updating configuration..."
haste_url="${domain}${path}"
ynh_config_add --template="haste.sh" --destination="/usr/bin/$app"
#=================================================
# SECURE FILES AND DIRECTORIES
#=================================================
chmod +x /usr/bin/$app
#=================================================
# START SYSTEMD SERVICE
#=================================================
ynh_script_progression "Starting $app's systemd service..."
ynh_systemctl --service=$app --action=start
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression "Upgrade of $app completed"