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

56 lines
1.9 KiB
Text
Raw Normal View History

2023-09-21 15:11:59 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# APP "BUILD" (DEPLOYING SOURCES, VENV, COMPILING ETC)
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
ynh_script_progression --message="Setting up source files..." --weight=1
2023-09-21 16:29:54 +02:00
ynh_setup_source --source_id=httpsh --dest_dir="$install_dir/httpsh"
# TODO: copy files where needed
mv "$install_dir/httpsh/usr/local/bin/ttyd-login" "$install_dir/httpsh"
2023-09-21 15:11:59 +02:00
2023-09-21 16:29:54 +02:00
ynh_add_config --template="ttyd_httphs.conf" --destination="$install_dir/ttyd_httphs.conf"
2023-09-21 15:11:59 +02:00
2023-09-21 16:29:54 +02:00
chown -R "$app:$app" "$install_dir"
2023-09-21 15:11:59 +02:00
#=================================================
# SYSTEM CONFIGURATION
#=================================================
ynh_script_progression --message="Adding system configurations related to $app..." --weight=1
ynh_add_nginx_config
ynh_add_systemd_config
2023-09-21 16:29:54 +02:00
yunohost service add "$app" --description="httpsh on ttyd web terminal" --log="/var/log/$app/$app.log"
2023-09-21 15:11:59 +02:00
2023-09-21 16:29:54 +02:00
ynh_use_logrotate
2023-09-21 15:11:59 +02:00
2023-09-21 16:29:54 +02:00
ynh_add_fail2ban_config --logpath="/var/log/$app/$app.log" --failregex="^error: maximum authentication attempts exceeded for <F-USER>.*</F-USER> from <HOST>$"
2023-09-21 15:11:59 +02:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# START SYSTEMD SERVICE
#=================================================
ynh_script_progression --message="Starting a systemd service..." --weight=1
2023-09-21 16:29:54 +02:00
ynh_systemd_action --service_name="$app" --action="start" --log_path="/var/log/$app/$app.log"
2023-09-21 15:11:59 +02:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Installation of $app completed" --last