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

Do not upgrade the config file in the upgrade script

This commit is contained in:
Kay0u 2022-01-03 16:10:06 +01:00
parent a98d1ff6de
commit 24c6d78589
No known key found for this signature in database
GPG key ID: AAFEEB16CFA2AE2D

View file

@ -31,6 +31,12 @@ architecture=$YNH_ARCH
upgrade_type=$(ynh_check_app_version_changed)
# The dns port should be 53
if [ "$adguard_port" -ne "53" ]; then
adguard_port=53
ynh_app_setting_set --app=$app --key=adguard_port --value=$adguard_port
fi
#=================================================
# BACKUP BEFORE UPGRADE THEN ACTIVE TRAP
#=================================================
@ -110,17 +116,6 @@ ynh_script_progression --message="Upgrading dependencies..." --weight=1
ynh_install_app_dependencies $pkg_dependencies
#=================================================
# UPDATE A CONFIG FILE
#=================================================
ynh_script_progression --message="Updating a configuration file..." --weight=1
# Main config File
ynh_add_config --template="../conf/AdGuardHome.yaml" --destination="$final_path/AdGuardHome.yaml"
chmod 600 "$final_path/AdGuardHome.yaml"
chown -R $app: "$final_path/AdGuardHome.yaml"
#=================================================
# SETUP SYSTEMD
#=================================================