From 1d37ad480b783d13ae8ea771944b79b664e45085 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Pi=C3=A9dallu?= Date: Sat, 2 Sep 2023 18:07:19 +0200 Subject: [PATCH] Add change_url script --- scripts/change_url | 47 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 scripts/change_url diff --git a/scripts/change_url b/scripts/change_url new file mode 100644 index 0000000..209a794 --- /dev/null +++ b/scripts/change_url @@ -0,0 +1,47 @@ +#!/bin/bash + +#================================================= +# GENERIC STARTING +#================================================= +# IMPORT GENERIC HELPERS +#================================================= + +source _common.sh +source /usr/share/yunohost/helpers + +#================================================= +# STANDARD MODIFICATIONS +#================================================= +# MODIFY URL IN NGINX CONF +#================================================= +ynh_script_progression --message="Updating NGINX web server configuration..." --weight=1 + +ynh_change_url_nginx_config + +#================================================= +# SPECIFIC MODIFICATIONS +#================================================= +# Build Jellyfin-vue +#================================================= +ynh_script_progression --message="Building Jellyfin Vue... (this will take some time and resources!)" --weight=24 + +# Already patched in install script +# _patch_config_json "$install_dir/source" +rm -rf "$install_dir/www" +_npm_build_install "$install_dir/source" "$install_dir/www" "$path/" + +#================================================= +# ADD A CONFIGURATION +#================================================= +ynh_script_progression --message="Adding a configuration file..." --weight=1 + +# Check if Jellyfin is installed, and configure it as defaultServerURL. +for url in $(_list_jellyfin_urls); do + _append_to_server_urls "$install_dir/www/config.json" "$url" +done + +#================================================= +# END OF SCRIPT +#================================================= + +ynh_script_progression --message="Change of URL completed for $app" --last