2019-01-09 09:31:49 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2021-07-06 18:01:44 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CHECK VERSION
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
upgrade_type=$(ynh_check_app_version_changed)
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD UPGRADE STEPS
|
|
|
|
#=================================================
|
|
|
|
# STOP SYSTEMD SERVICE
|
|
|
|
#=================================================
|
2021-08-30 13:38:27 +02:00
|
|
|
ynh_script_progression --message="Stopping a systemd service..." --weight=1
|
2021-07-06 18:01:44 +02:00
|
|
|
|
2023-09-07 18:07:12 +02:00
|
|
|
ynh_systemd_action --service_name="$app" --action="stop"
|
2021-09-21 18:27:40 +02:00
|
|
|
|
2021-07-06 18:01:44 +02:00
|
|
|
#=================================================
|
|
|
|
# ENSURE DOWNWARD COMPATIBILITY
|
|
|
|
#=================================================
|
2021-08-30 13:38:27 +02:00
|
|
|
ynh_script_progression --message="Ensuring downward compatibility..." --weight=1
|
2021-07-06 18:01:44 +02:00
|
|
|
|
2022-07-29 21:30:38 +02:00
|
|
|
if [ -n "$dns_over_https" ] && [ "$dns_over_https" == "1" ];
|
|
|
|
then
|
|
|
|
dns_over_https="true"
|
2023-09-07 18:07:12 +02:00
|
|
|
ynh_app_setting_set --app="$app" --key=dns_over_https --value=$dns_over_https
|
2023-03-03 14:34:55 +01:00
|
|
|
# DNS over TLS
|
2023-03-03 13:44:35 +01:00
|
|
|
adguard_DoT_port=853
|
2023-04-06 09:27:41 +02:00
|
|
|
ynh_app_setting_set --app=$app --key=adguard_DoT_port --value=$adguard_DoT_port
|
2023-03-03 14:34:55 +01:00
|
|
|
ynh_exec_warn_less yunohost firewall allow --no-upnp UDP $adguard_DoT_port
|
|
|
|
ynh_exec_warn_less yunohost firewall allow --no-upnp TCP $adguard_DoT_port
|
|
|
|
# DNS over QUIC
|
2023-03-03 13:44:35 +01:00
|
|
|
adguard_DoQ_port=784
|
2023-09-07 18:07:12 +02:00
|
|
|
ynh_app_setting_set --app="$app" --key=adguard_DoQ_port --value=$adguard_DoQ_port
|
2023-03-03 14:34:55 +01:00
|
|
|
ynh_exec_warn_less yunohost firewall allow --no-upnp UDP $adguard_DoQ_port
|
2022-07-29 21:30:38 +02:00
|
|
|
elif [ -z "$dns_over_https" ] || [ "$dns_over_https" == "0" ];
|
|
|
|
then
|
|
|
|
dns_over_https="false"
|
2023-09-07 18:07:12 +02:00
|
|
|
ynh_app_setting_set --app="$app" --key=dns_over_https --value=$dns_over_https
|
2021-07-06 18:01:44 +02:00
|
|
|
fi
|
|
|
|
|
2019-01-09 09:31:49 +01:00
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
|
|
|
|
2021-07-06 18:01:44 +02:00
|
|
|
if [ "$upgrade_type" == "UPGRADE_APP" ]
|
|
|
|
then
|
2022-07-29 21:30:38 +02:00
|
|
|
ynh_script_progression --message="Upgrading source files..." --weight=1
|
2020-05-23 13:25:24 +02:00
|
|
|
|
2022-07-29 21:30:38 +02:00
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
2023-04-06 09:05:31 +02:00
|
|
|
ynh_setup_source --dest_dir=$install_dir
|
2021-07-06 18:01:44 +02:00
|
|
|
fi
|
|
|
|
|
2023-04-06 09:05:31 +02:00
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R $app:$app "$install_dir"
|
2021-09-21 18:27:40 +02:00
|
|
|
|
2023-04-06 09:05:31 +02:00
|
|
|
setcap 'CAP_NET_BIND_SERVICE=+eip CAP_NET_RAW=+eip' $install_dir/AdGuardHome
|
2019-01-09 09:31:49 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2021-08-30 13:38:27 +02:00
|
|
|
ynh_script_progression --message="Upgrading NGINX web server configuration..." --weight=1
|
2019-01-09 09:31:49 +01:00
|
|
|
|
2021-07-06 18:01:44 +02:00
|
|
|
# Create a dedicated NGINX config
|
|
|
|
ynh_add_nginx_config
|
2019-01-09 09:31:49 +01:00
|
|
|
|
2023-09-27 15:02:25 +02:00
|
|
|
# Create a dedicated systemd config
|
|
|
|
ynh_add_systemd_config
|
|
|
|
|
2024-02-08 18:04:12 +01:00
|
|
|
yunohost service add $app --description="Ads & trackers blocking DNS server" --needs_exposed_ports 53
|
2023-09-27 15:02:25 +02:00
|
|
|
|
2021-09-21 18:27:40 +02:00
|
|
|
#=================================================
|
2022-07-29 21:30:38 +02:00
|
|
|
# SPECIFIC UPGRADE
|
2022-01-03 16:25:24 +01:00
|
|
|
#=================================================
|
|
|
|
# UPDATE A CONFIG FILE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Updating a configuration file..." --weight=1
|
|
|
|
|
2022-01-12 11:03:31 +01:00
|
|
|
ipv4_interface=$(echo "$(ip -4 route get 1.2.3.4 2> /dev/null)" | head -n1 | grep -oP '(?<=dev )\w+' || true)
|
|
|
|
ipv6_interface=$(echo "$(ip -6 route get ::1.2.3.4 2> /dev/null)" | head -n1 | grep -oP '(?<=dev )\w+' || true)
|
2022-01-06 11:23:20 +01:00
|
|
|
|
|
|
|
if [ -z "$ipv4_interface" ] && [ -z "$ipv6_interface" ]; then
|
2022-07-29 21:30:38 +02:00
|
|
|
ynh_die --message="Impossible to find the main network interface, please report this issue."
|
2022-01-06 11:23:20 +01:00
|
|
|
elif [ "$ipv4_interface" != "$ipv6_interface" ]; then
|
2022-07-29 21:30:38 +02:00
|
|
|
if [ -z "$ipv4_interface" ]; then
|
2023-03-03 12:31:29 +01:00
|
|
|
echo -e "bind-interfaces\nexcept-interface=$ipv6_interface" > "/etc/dnsmasq.d/$app"
|
2022-07-29 21:30:38 +02:00
|
|
|
elif [ -z "$ipv6_interface" ]; then
|
2023-03-03 12:31:29 +01:00
|
|
|
echo -e "bind-interfaces\nexcept-interface=$ipv4_interface" > "/etc/dnsmasq.d/$app"
|
2022-07-29 21:30:38 +02:00
|
|
|
else
|
2023-03-03 12:31:29 +01:00
|
|
|
echo -e "bind-interfaces\nexcept-interface=$ipv4_interface, $ipv6_interface" > "/etc/dnsmasq.d/$app"
|
2022-07-29 21:30:38 +02:00
|
|
|
fi
|
2022-01-04 14:00:07 +01:00
|
|
|
else
|
2023-03-03 12:31:29 +01:00
|
|
|
echo -e "bind-interfaces\nexcept-interface=$ipv4_interface" > "/etc/dnsmasq.d/$app"
|
2022-01-04 14:00:07 +01:00
|
|
|
fi
|
|
|
|
|
|
|
|
systemctl restart dnsmasq
|
|
|
|
|
|
|
|
ynh_store_file_checksum --file="/etc/dnsmasq.d/$app"
|
|
|
|
|
2022-01-06 11:44:14 +01:00
|
|
|
ipv4_route_output=$(echo "$(ip -4 route get 1.2.3.4 2> /dev/null)" | head -n1)
|
|
|
|
ipv6_route_output=$(echo "$(ip -6 route get ::1.2.3.4 2> /dev/null)" | head -n1)
|
2022-01-03 16:25:24 +01:00
|
|
|
|
|
|
|
ipv4_addr=""
|
2023-09-07 18:07:12 +02:00
|
|
|
for i in $(seq "$(echo "$ipv4_route_output" | wc -w)" -1 1); do
|
|
|
|
ip=$(echo "$ipv4_route_output" | awk "{print \$$i}")
|
|
|
|
if ynh_validate_ip4 --ip_address="$ip"; then
|
2022-07-29 21:30:38 +02:00
|
|
|
ipv4_addr="$ip"
|
|
|
|
break
|
|
|
|
fi
|
2022-01-03 16:25:24 +01:00
|
|
|
done
|
|
|
|
|
|
|
|
ipv6_addr=""
|
2023-09-07 18:07:12 +02:00
|
|
|
for i in $(seq "$(echo "$ipv6_route_output" | wc -w)" -1 1); do
|
|
|
|
ip=$(echo "$ipv6_route_output" | awk "{print \$$i}")
|
|
|
|
if ynh_validate_ip6 --ip_address="$ip"; then
|
2022-07-29 21:30:38 +02:00
|
|
|
ipv6_addr="$ip"
|
|
|
|
break
|
|
|
|
fi
|
2022-01-03 16:25:24 +01:00
|
|
|
done
|
|
|
|
|
|
|
|
# Reset the bind_hosts if the current ip is 0.0.0.0
|
|
|
|
python3 -c "import yaml
|
2023-04-06 09:05:31 +02:00
|
|
|
with open(\"$install_dir/AdGuardHome.yaml\", 'r') as file:
|
2022-07-29 21:30:38 +02:00
|
|
|
conf_file = yaml.safe_load(file)
|
2022-01-03 16:25:24 +01:00
|
|
|
|
|
|
|
need_file_update = False
|
|
|
|
|
|
|
|
if \"0.0.0.0\" in conf_file[\"dns\"][\"bind_hosts\"]:
|
2022-07-29 21:30:38 +02:00
|
|
|
conf_file[\"dns\"][\"bind_hosts\"] = []
|
|
|
|
if \"$ipv4_addr\":
|
|
|
|
conf_file[\"dns\"][\"bind_hosts\"].append(\"$ipv4_addr\")
|
|
|
|
if \"$ipv6_addr\":
|
|
|
|
conf_file[\"dns\"][\"bind_hosts\"].append(\"$ipv6_addr\")
|
|
|
|
need_file_update = True
|
|
|
|
|
2022-01-03 16:25:24 +01:00
|
|
|
if need_file_update:
|
2023-04-06 09:05:31 +02:00
|
|
|
with open(\"$install_dir/AdGuardHome.yaml\", 'w') as file:
|
2022-07-29 21:30:38 +02:00
|
|
|
yaml.dump(conf_file, file)
|
2022-01-03 16:25:24 +01:00
|
|
|
"
|
|
|
|
|
2023-04-06 09:05:31 +02:00
|
|
|
chmod 600 "$install_dir/AdGuardHome.yaml"
|
|
|
|
chown -R $app:$app "$install_dir/AdGuardHome.yaml"
|
2022-01-03 16:25:24 +01:00
|
|
|
|
2021-07-06 18:01:44 +02:00
|
|
|
#=================================================
|
|
|
|
# START SYSTEMD SERVICE
|
|
|
|
#=================================================
|
2021-08-30 13:38:27 +02:00
|
|
|
ynh_script_progression --message="Starting a systemd service..." --weight=1
|
2021-07-06 18:01:44 +02:00
|
|
|
|
2023-09-07 18:07:12 +02:00
|
|
|
ynh_systemd_action --service_name="$app" --action="restart" --log_path="systemd"
|
2021-07-06 18:01:44 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
2019-01-09 09:31:49 +01:00
|
|
|
|
2021-08-30 13:38:27 +02:00
|
|
|
ynh_script_progression --message="Upgrade of $app completed" --last
|