1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/technitium-dns_ynh.git synced 2024-09-03 20:26:36 +02:00
technitium-dns_ynh/scripts/install

53 lines
1.7 KiB
Text
Raw Normal View History

2022-07-04 12:17:41 +02:00
#!/bin/bash
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2022-07-28 01:25:51 +02:00
ynh_script_progression --message="Setting up source files..." --weight=1
2022-07-04 12:17:41 +02:00
# Download, check integrity, uncompress and patch the source from app.src
2024-03-07 17:13:03 +01:00
ynh_setup_source --dest_dir="$install_dir/sources"
ynh_setup_source --source_id="dotnet" --dest_dir="$install_dir/dotnet"
2022-07-04 12:17:41 +02:00
2024-03-07 16:49:38 +01:00
chmod -R o-rwx "$install_dir"
chown -R "$app:www-data" "$install_dir"
2022-07-04 12:17:41 +02:00
2024-03-07 16:49:38 +01:00
chmod -R o-rwx "$data_dir"
chown -R "$app:www-data" "$data_dir"
2022-07-28 01:25:51 +02:00
2022-07-04 12:17:41 +02:00
#=================================================
2024-03-07 16:49:38 +01:00
# SYSTEM CONFIGURATION
2022-07-04 12:17:41 +02:00
#=================================================
2024-03-07 16:49:38 +01:00
ynh_script_progression --message="Adding system configurations related to $app..." --weight=1
2022-07-04 12:17:41 +02:00
# Create a dedicated NGINX config
ynh_add_nginx_config
# Create a dedicated systemd config
ynh_add_systemd_config
2024-03-07 16:49:38 +01:00
yunohost service add "$app" --description="Technitium DNS Server" --log="/var/log/$app/$app.log" --needs_exposed_ports="53"
2022-07-04 12:17:41 +02:00
2022-07-28 01:25:51 +02:00
# Use logrotate to manage application logfile(s)
2022-07-04 12:17:41 +02:00
ynh_use_logrotate
#=================================================
# START SYSTEMD SERVICE
#=================================================
2024-03-07 16:49:38 +01:00
ynh_script_progression --message="Starting $app's systemd service..." --weight=1
2022-07-04 12:17:41 +02:00
# Start a systemd service
2024-03-07 16:49:38 +01:00
ynh_systemd_action --service_name="$app" --action="start" --log_path="/var/log/$app/$app.log"
2022-07-04 12:17:41 +02:00
#=================================================
# END OF SCRIPT
#=================================================
2022-07-28 01:25:51 +02:00
ynh_script_progression --message="Installation of $app completed" --last