2016-10-25 23:34:42 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2017-10-14 16:28:52 +02:00
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
2016-10-25 23:34:42 +02:00
|
|
|
|
2022-10-16 14:09:33 +02:00
|
|
|
#=================================================
|
|
|
|
# STOP SYSTEMD SERVICE
|
|
|
|
#=================================================
|
2024-08-31 12:29:36 +02:00
|
|
|
ynh_script_progression "Stopping $app's systemd service..."
|
2022-10-16 14:09:33 +02:00
|
|
|
|
2024-08-31 12:29:36 +02:00
|
|
|
ynh_systemctl --service=$app --action="stop"
|
2022-10-16 14:09:33 +02:00
|
|
|
|
2017-10-14 16:28:52 +02:00
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
2024-08-31 12:29:36 +02:00
|
|
|
ynh_script_progression "Upgrading source files..."
|
2017-10-14 16:28:52 +02:00
|
|
|
|
2024-06-18 10:01:08 +02:00
|
|
|
ynh_setup_source --dest_dir="$install_dir" --keep="config.js"
|
2017-10-14 16:28:52 +02:00
|
|
|
|
2023-12-10 11:16:54 +01:00
|
|
|
#=================================================
|
|
|
|
# UPGRADE NODEJS
|
|
|
|
#=================================================
|
2024-08-31 12:29:36 +02:00
|
|
|
ynh_script_progression "Upgrading dependencies..."
|
2023-12-10 11:16:54 +01:00
|
|
|
|
2024-08-31 12:29:36 +02:00
|
|
|
ynh_nodejs_install
|
2023-12-10 11:16:54 +01:00
|
|
|
|
2017-10-14 16:28:52 +02:00
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2024-08-31 12:29:36 +02:00
|
|
|
ynh_script_progression "Upgrading NGINX web server configuration..."
|
2017-10-14 16:28:52 +02:00
|
|
|
|
2024-08-31 12:29:36 +02:00
|
|
|
ynh_config_add_nginx
|
2017-10-14 16:28:52 +02:00
|
|
|
|
2024-08-31 12:29:36 +02:00
|
|
|
ynh_config_add_logrotate
|
2017-11-29 15:42:21 +01:00
|
|
|
|
2023-12-10 11:16:54 +01:00
|
|
|
env_path="$PATH"
|
2024-08-31 12:29:36 +02:00
|
|
|
ynh_config_add_systemd
|
2023-12-10 11:16:54 +01:00
|
|
|
|
|
|
|
yunohost service add $app --description="Haste is a pastebin software" --log="/var/log/$app/$app.log"
|
2017-11-29 15:42:21 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# UPGRADE NPM MODULES
|
|
|
|
#=================================================
|
2024-08-31 12:29:36 +02:00
|
|
|
ynh_script_progression "Installing $app..."
|
2017-11-29 15:42:21 +01:00
|
|
|
|
2023-04-03 16:58:04 +02:00
|
|
|
pushd "$install_dir"
|
2024-08-31 12:29:36 +02:00
|
|
|
ynh_hide_warnings $ynh_npm install
|
2021-09-08 17:14:14 +02:00
|
|
|
popd
|
2017-11-29 15:42:21 +01:00
|
|
|
|
2017-10-14 16:28:52 +02:00
|
|
|
#=================================================
|
2017-11-29 15:42:21 +01:00
|
|
|
# UPGRADE HASTE CONFIGURATION
|
2017-10-14 16:28:52 +02:00
|
|
|
#=================================================
|
|
|
|
|
2020-07-25 23:25:36 +02:00
|
|
|
# Replace ajax.googleapis by local file
|
2023-04-03 16:58:04 +02:00
|
|
|
cp ../sources/jquery.min.js "$install_dir/static/jquery.min.js"
|
2020-07-29 09:33:29 +02:00
|
|
|
|
2024-08-31 12:29:36 +02:00
|
|
|
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"
|
2020-07-25 23:25:36 +02:00
|
|
|
|
2017-10-14 16:28:52 +02:00
|
|
|
#=================================================
|
2017-11-29 15:42:21 +01:00
|
|
|
# UPGRADE HASTE BINARY
|
2017-10-14 16:28:52 +02:00
|
|
|
#=================================================
|
2024-08-31 12:29:36 +02:00
|
|
|
ynh_script_progression "Updating configuration..."
|
2017-10-14 16:28:52 +02:00
|
|
|
|
2023-04-03 16:58:04 +02:00
|
|
|
haste_url="${domain}${path}"
|
2024-08-31 12:29:36 +02:00
|
|
|
ynh_config_add --template="haste.sh" --destination="/usr/bin/$app"
|
2020-07-25 23:14:14 +02:00
|
|
|
|
2017-10-14 16:28:52 +02:00
|
|
|
#=================================================
|
|
|
|
# SECURE FILES AND DIRECTORIES
|
|
|
|
#=================================================
|
|
|
|
|
2020-09-06 18:03:25 +02:00
|
|
|
chmod +x /usr/bin/$app
|
2017-11-29 15:42:21 +01:00
|
|
|
|
|
|
|
#=================================================
|
2020-07-25 23:14:14 +02:00
|
|
|
# START SYSTEMD SERVICE
|
2017-11-29 15:42:21 +01:00
|
|
|
#=================================================
|
2024-08-31 12:29:36 +02:00
|
|
|
ynh_script_progression "Starting $app's systemd service..."
|
2017-11-29 15:42:21 +01:00
|
|
|
|
2024-08-31 12:29:36 +02:00
|
|
|
ynh_systemctl --service=$app --action=start
|
2017-10-14 16:28:52 +02:00
|
|
|
|
2020-07-25 23:14:14 +02:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
2017-10-14 16:28:52 +02:00
|
|
|
|
2024-08-31 12:29:36 +02:00
|
|
|
ynh_script_progression "Upgrade of $app completed"
|