1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/monica_ynh.git synced 2024-09-03 19:46:23 +02:00

Store key values if already not set

This commit is contained in:
anmol 2020-10-23 09:36:42 +05:30
parent 47621d1122
commit 764b80bf5c

View file

@ -174,6 +174,8 @@ then
ynh_replace_string --match_string="__DAV__" --replace_string="false" --target_file="$config"
else
ynh_replace_string --match_string="__DAV__" --replace_string="true" --target_file="$config"
dav_support=1
ynh_app_setting_set --app=$app --key=dav_support --value=$dav_support
fi
# Enable or disable signup for public users
if [ $signup -eq 1 ]
@ -181,6 +183,8 @@ then
ynh_replace_string --match_string="__SIGNUP__" --replace_string="false" --target_file="$config"
else
ynh_replace_string --match_string="__SIGNUP__" --replace_string="true" --target_file="$config"
signup=0
ynh_app_setting_set --app=$app --key=signup --value=$signup
fi
# Enable or disable two factor authentication support for users
if [ $two_factor -eq 1 ]
@ -188,6 +192,8 @@ then
ynh_replace_string --match_string="__TWO_FACTOR__" --replace_string="true" --target_file="$config"
else
ynh_replace_string --match_string="__TWO_FACTOR__" --replace_string="false" --target_file="$config"
two_factor=0
ynh_app_setting_set --app=$app --key=two_factor --value=$two_factor
fi
#=================================================