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

84 lines
2.7 KiB
Text
Raw Normal View History

2021-03-16 23:36:39 +01:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# RETRIEVE ARGUMENTS FROM THE MANIFEST
#=================================================
2022-06-21 02:28:49 +02:00
hmac_key=$(ynh_string_random --length=64)
theme="Auto"
2021-03-18 04:45:54 +01:00
ynh_app_setting_set --app=$app --key=hmac_key --value=$hmac_key
ynh_app_setting_set --app=$app --key=theme --value=$theme
2022-06-21 02:28:49 +02:00
2021-03-16 23:36:39 +01:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2021-03-18 04:45:54 +01:00
ynh_script_progression --message="Setting up source files..." --weight=1
2021-03-16 23:36:39 +01:00
# Download, check integrity, uncompress and patch the source from app.src
ynh_setup_source --dest_dir="$install_dir"
ynh_setup_source --dest_dir="$install_dir/nim-installation" --source_id="nim"
2021-03-16 23:36:39 +01:00
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
2021-03-16 23:36:39 +01:00
#=================================================
# SPECIFIC SETUP
#=================================================
2021-03-18 04:45:54 +01:00
# COMPILE NITTER
2021-03-16 23:36:39 +01:00
#=================================================
2021-03-18 04:45:54 +01:00
ynh_script_progression --message="Compiling Nitter..." --weight=30
2021-04-18 03:40:36 +02:00
build_nitter
2021-03-16 23:36:39 +01:00
2022-06-21 02:28:49 +02:00
#=================================================
# SYSTEM CONFIGURATION
2022-06-21 02:28:49 +02:00
#=================================================
ynh_script_progression --message="Adding system configurations related to $app..." --weight=1
2022-06-21 02:28:49 +02:00
# Create a dedicated NGINX config
ynh_add_nginx_config
2021-03-16 23:36:39 +01:00
# Create a dedicated systemd config
ynh_add_systemd_config
# Set permissions to app files
2021-04-18 03:40:36 +02:00
set_permissions
2021-03-16 23:36:39 +01:00
2022-06-27 22:47:05 +02:00
# Use logrotate to manage application logfile(s)
ynh_use_logrotate
yunohost service add $app --description="Alternative front-end for Twitter that respects your privacy" --log="/var/log/$app/$app.log"
2021-03-16 23:36:39 +01:00
#=================================================
# ADD A CONFIGURATION
2021-03-16 23:36:39 +01:00
#=================================================
ynh_script_progression --message="Adding a configuration file..."
2021-03-16 23:36:39 +01:00
ynh_add_config --template="nitter.conf" --destination="$install_dir/nitter.conf"
chmod 400 "$install_dir/nitter.conf"
chown $app:$app "$install_dir/nitter.conf"
2021-03-16 23:36:39 +01:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
2021-03-18 04:45:54 +01:00
ynh_script_progression --message="Starting a systemd service..." --weight=1
2021-03-16 23:36:39 +01:00
# Start a systemd service
ynh_systemd_action --service_name=$app --action="start" --log_path="/var/log/$app/$app.log"
#=================================================
# END OF SCRIPT
#=================================================
2021-03-18 04:45:54 +01:00
ynh_script_progression --message="Installation of $app completed" --last