2022-05-28 11:54:59 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RETRIEVE ARGUMENTS FROM THE MANIFEST
|
|
|
|
#=================================================
|
|
|
|
|
2022-05-28 14:11:09 +02:00
|
|
|
instance_country=""
|
|
|
|
instance_provider=""
|
|
|
|
|
2022-05-28 11:54:59 +02:00
|
|
|
#=================================================
|
|
|
|
# STORE SETTINGS FROM MANIFEST
|
|
|
|
#=================================================
|
|
|
|
|
2022-05-28 14:11:09 +02:00
|
|
|
ynh_app_setting_set --app=$app --key=instance_country --value=$instance_country
|
|
|
|
ynh_app_setting_set --app=$app --key=instance_provider --value=$instance_provider
|
2022-05-28 11:54:59 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
2022-05-28 12:23:18 +02:00
|
|
|
ynh_script_progression --message="Setting up source files..." --weight=4
|
2022-05-28 11:54:59 +02:00
|
|
|
|
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
2023-04-12 23:19:10 +02:00
|
|
|
ynh_setup_source --dest_dir="$install_dir"
|
2022-05-28 11:54:59 +02:00
|
|
|
|
2023-04-12 23:12:11 +02:00
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R $app:www-data "$install_dir"
|
|
|
|
chmod -R +x "$install_dir/librarian"
|
2022-05-28 11:54:59 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2022-05-28 12:23:18 +02:00
|
|
|
ynh_script_progression --message="Configuring NGINX web server..." --weight=1
|
2022-05-28 11:54:59 +02:00
|
|
|
|
|
|
|
# Create a dedicated NGINX config
|
|
|
|
ynh_add_nginx_config
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# ADD A CONFIGURATION
|
|
|
|
#=================================================
|
2022-05-28 12:23:18 +02:00
|
|
|
ynh_script_progression --message="Adding a configuration file..." --weight=2
|
2022-05-28 11:54:59 +02:00
|
|
|
|
2023-04-12 23:12:11 +02:00
|
|
|
ynh_add_config --template="../conf/config.example.yml" --destination="$install_dir/config.yml"
|
2022-05-28 11:54:59 +02:00
|
|
|
|
2023-04-12 23:12:11 +02:00
|
|
|
chmod 400 "$install_dir/config.yml"
|
|
|
|
chown $app:$app "$install_dir/config.yml"
|
2022-05-28 11:54:59 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# SETUP SYSTEMD
|
|
|
|
#=================================================
|
2022-05-28 12:23:18 +02:00
|
|
|
ynh_script_progression --message="Configuring a systemd service..." --weight=1
|
2022-05-28 11:54:59 +02:00
|
|
|
|
|
|
|
# Create a dedicated systemd config
|
|
|
|
ynh_add_systemd_config
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# INTEGRATE SERVICE IN YUNOHOST
|
|
|
|
#=================================================
|
2022-05-28 12:23:18 +02:00
|
|
|
ynh_script_progression --message="Integrating service in YunoHost..." --weight=2
|
2022-05-28 11:54:59 +02:00
|
|
|
|
2022-05-28 12:45:34 +02:00
|
|
|
yunohost service add $app --description="Alternative frontend for LBRY/Odysee" --log="/var/log/$app/$app.log"
|
2022-05-28 11:54:59 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# START SYSTEMD SERVICE
|
|
|
|
#=================================================
|
2022-05-28 12:23:18 +02:00
|
|
|
ynh_script_progression --message="Starting a systemd service..." --weight=3
|
2022-05-28 11:54:59 +02:00
|
|
|
|
|
|
|
# Start a systemd service
|
2022-05-28 12:45:34 +02:00
|
|
|
ynh_systemd_action --service_name=$app --action="start" --log_path="systemd"
|
2022-05-28 11:54:59 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2022-05-28 12:23:18 +02:00
|
|
|
ynh_script_progression --message="Installation of $app completed" --last
|