1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/adguardhome_ynh.git synced 2024-09-03 18:06:23 +02:00

fix conditions in the downward compatibility

This commit is contained in:
OniriCorpe 2024-05-13 02:25:38 +02:00
parent 0bd9d8644c
commit 8d5c864dbb

View file

@ -29,20 +29,22 @@ ynh_systemd_action --service_name="$app" --action="stop"
#=================================================
ynh_script_progression --message="Ensuring downward compatibility..." --weight=1
if [ -z "${expose_port_53:-}" ] || [ "${expose_port_53:-}" = true ]; then
expose_port_53="true"
ynh_app_setting_set --app="$app" --key=expose_port_53 --value="$expose_port_53"
elif [ -n "${expose_port_53:-}" ] || [ "${expose_port_53:-}" = false ]; then
if [ -z "${expose_port_53:-}" ] || [ "${expose_port_53:-}" = false ]; then
# if 'expose_port_53' doesn't exist or is false
expose_port_53="false"
ynh_app_setting_set --app="$app" --key=expose_port_53 --value="$expose_port_53"
elif [ "${expose_port_53:-}" = true ]; then
expose_port_53="true"
ynh_app_setting_set --app="$app" --key=expose_port_53 --value="$expose_port_53"
fi
if [ -z "${dns_over_https:-}" ] || [ "${dns_over_https:-}" = true ]; then
dns_over_https="true"
ynh_app_setting_set --app="$app" --key=dns_over_https --value=$dns_over_https
elif [ -n "${dns_over_https:-}" ] || [ "${dns_over_https:-}" = false ]; then
if [ -z "${dns_over_https:-}" ] || [ "${dns_over_https:-}" = false ]; then
# if 'dns_over_https' doesn't exist or is false
dns_over_https="false"
ynh_app_setting_set --app="$app" --key=dns_over_https --value=$dns_over_https
elif [ "${dns_over_https:-}" = true ]; then
dns_over_https="true"
ynh_app_setting_set --app="$app" --key=dns_over_https --value=$dns_over_https
fi
# about all those 'ynh_write_var_in_file':