1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/jackett_ynh.git synced 2024-09-03 19:26:28 +02:00
jackett_ynh/scripts/install

64 lines
2.2 KiB
Text
Raw Normal View History

2021-05-21 14:24:10 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2021-05-25 23:28:22 +02:00
ynh_script_progression --message="Setting up source files..."
2021-05-21 14:24:10 +02:00
# Download, check integrity, uncompress and patch the source from app.src
2024-02-25 21:56:47 +01:00
ynh_setup_source --dest_dir="$install_dir"
2021-11-22 09:40:20 +01:00
2024-02-25 21:56:47 +01:00
chmod -R o-rwx "$install_dir"
chown -R "$app:www-data" "$install_dir"
2021-05-21 14:24:10 +02:00
#=================================================
2024-02-25 21:56:47 +01:00
# SYSTEM CONFIGURATION
2021-05-21 14:24:10 +02:00
#=================================================
2024-02-25 21:56:47 +01:00
ynh_script_progression --message="Adding system configurations related to $app..." --weight=1
2021-05-21 14:24:10 +02:00
# Create a dedicated NGINX config
ynh_add_nginx_config
# Create a dedicated systemd config
ynh_add_systemd_config
2024-02-25 21:56:47 +01:00
yunohost service add "$app" --description="API support for torrent trackers" --log="/var/log/$app/$app.log"
# Use logrotate to manage application logfile(s)
ynh_use_logrotate
2021-05-21 14:24:10 +02:00
2021-05-21 16:14:28 +02:00
#=================================================
# ADD A CONFIGURATION
#=================================================
ynh_script_progression --message="Configuring Jackett..." --weight=2
2021-05-21 16:31:15 +02:00
# Start a systemd service
2024-02-25 21:56:47 +01:00
ynh_systemd_action --service_name="$app" --action="start" --log_path="systemd" --line_match="Hosting environment: Production" --timeout=30
2021-05-21 16:31:15 +02:00
# Start a systemd service
2024-02-25 21:56:47 +01:00
ynh_systemd_action --service_name="$app" --action="stop" --log_path="systemd"
2021-05-21 16:31:15 +02:00
2024-02-25 21:56:47 +01:00
target_string=$(echo \"BasePathOverride\": \"$path\")
sed --in-place "s@\"BasePathOverride\": null@${target_string}@g" "$install_dir/.config/Jackett/ServerConfig.json"
2021-05-21 14:24:10 +02:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
2024-02-25 21:56:47 +01:00
ynh_script_progression --message="Starting $app's systemd service..."
2021-05-21 14:24:10 +02:00
# Start a systemd service
2024-02-25 21:56:47 +01:00
ynh_systemd_action --service_name="$app" --action="start" --log_path="/var/log/$app/$app.log"
2021-05-21 14:24:10 +02:00
#=================================================
# END OF SCRIPT
#=================================================
2021-05-22 20:54:43 +02:00
ynh_script_progression --message="Installation of $app completed"