1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/wireguard_ynh.git synced 2024-09-03 20:35:58 +02:00
wireguard_ynh/scripts/install

119 lines
4.4 KiB
Text
Raw Normal View History

2020-10-11 14:45:13 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# RETRIEVE ARGUMENTS FROM THE MANIFEST
#=================================================
2023-05-25 10:42:39 +02:00
interface=$(ip route | awk '/default/ { print $5 }' | head -n1)
main_domain=$(cat /etc/yunohost/current_host)
2020-10-11 14:45:13 +02:00
#=================================================
# STORE SETTINGS FROM MANIFEST
#=================================================
ynh_app_setting_set --app=$app --key=interface --value=$interface
2020-10-11 14:45:13 +02:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
ynh_script_progression --message="Setting up source files..." --weight=1
2020-10-11 14:45:13 +02:00
# Download, check integrity, uncompress and patch the source from app.src
2023-09-23 23:13:18 +02:00
ynh_setup_source --dest_dir="$install_dir"
2020-10-11 14:45:13 +02:00
#=================================================
# NGINX CONFIGURATION
#=================================================
2021-09-09 17:58:14 +02:00
ynh_script_progression --message="Configuring NGINX web server..." --weight=1
2020-10-11 14:45:13 +02:00
# Create a dedicated nginx config
ynh_add_nginx_config
#=================================================
# SPECIFIC SETUP
#=================================================
# CONFIGURING WIREGUARD
#=================================================
# Create db directory for securing it later
2023-05-25 10:29:28 +02:00
mkdir -p $install_dir/db/server
2020-10-11 14:45:13 +02:00
# Add interface configuration file for the Web UI
2023-05-25 10:29:28 +02:00
ynh_add_config --template="../conf/interfaces.json" --destination="$install_dir/db/server/interfaces.json"
ynh_delete_file_checksum --file="$install_dir/db/server/interfaces.json"
2020-10-11 14:45:13 +02:00
2022-01-29 12:57:32 +01:00
# Add configuration for the Web UI
2023-05-25 10:29:28 +02:00
ynh_add_config --template="../conf/wireguard-ui.env" --destination="$install_dir/wireguard-ui.env"
2022-01-29 12:57:32 +01:00
2021-01-01 21:49:12 +01:00
# Create WireGuard configuration directory
2020-10-11 14:45:13 +02:00
mkdir -p /etc/wireguard
#=================================================
# SETUP SYSTEMD
#=================================================
ynh_script_progression --message="Configuring a systemd service..." --weight=1
2020-10-11 14:45:13 +02:00
# Create a dedicated systemd config for the web UI
ynh_add_systemd_config --service=wireguard_ui --template=wireguard_ui.service
2020-10-11 14:45:13 +02:00
2021-12-26 11:51:25 +01:00
# Create dedicated systemd configs for starting and monitoring WireGuard's configuration
2021-12-22 10:37:22 +01:00
cp ../conf/wireguard@.service /etc/systemd/system/wireguard@.service
2021-12-26 11:51:25 +01:00
cp ../conf/wireguard@.path /etc/systemd/system/wireguard@.path
systemctl daemon-reload
2021-12-22 10:37:22 +01:00
systemctl enable --quiet wireguard@wg0.service
2021-12-26 11:51:25 +01:00
systemctl enable --quiet --now wireguard@wg0.path
2020-10-11 14:45:13 +02:00
2021-12-30 17:06:32 +01:00
#=================================================
# ENABLE PORT FORWARDING
#=================================================
ynh_script_progression --message="Enabling port forwarding..." --weight=1
ynh_add_config --template="../conf/sysctl.conf" --destination="/etc/sysctl.d/$app.conf"
sysctl -p /etc/sysctl.d/$app.conf
2020-10-11 14:45:13 +02:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# SECURE FILES AND DIRECTORIES
#=================================================
# Set permissions to app files
2023-05-25 10:29:28 +02:00
chmod 750 "$install_dir"
chmod -R o-rwx "$install_dir"
chown -R $app: "$install_dir"
2020-10-11 14:45:13 +02:00
2021-07-04 21:43:22 +02:00
chmod 750 /etc/wireguard
chmod -R o-rwx /etc/wireguard
chown -R $app: /etc/wireguard
2020-10-11 14:45:13 +02:00
#=================================================
# INTEGRATE SERVICE IN YUNOHOST
#=================================================
ynh_script_progression --message="Integrating service in YunoHost..." --weight=1
2020-10-11 14:45:13 +02:00
2022-02-20 19:13:48 +01:00
yunohost service add wg-quick@wg0 --description="WireGuard VPN" --needs_exposed_ports="$port_wg" --test_status="wg show | grep wg0"
2021-09-09 17:58:14 +02:00
yunohost service add wireguard_ui --description="WireGuard UI"
2020-10-11 14:45:13 +02:00
#=================================================
2021-12-21 17:57:39 +01:00
# START UI SYSTEMD SERVICE
2020-10-11 14:45:13 +02:00
#=================================================
2021-12-21 17:57:39 +01:00
ynh_script_progression --message="Starting the systemd service for the UI..." --weight=1
2020-10-11 14:45:13 +02:00
# Start a systemd service
2021-01-21 22:15:43 +01:00
ynh_systemd_action --service_name=wireguard_ui --action="start" --line_match="http server started" --log_path="systemd" --timeout=30
2020-10-11 14:45:13 +02:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Installation of $app completed. You may need to reboot your server before being able to start the WireGuard service." --last