1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/flarum_ynh.git synced 2024-09-03 18:36:24 +02:00

Fix settings in database

This commit is contained in:
tituspijean 2021-04-29 00:44:54 +02:00
parent 3b29d163d2
commit e11b722225
2 changed files with 3 additions and 3 deletions

View file

@ -166,12 +166,12 @@ pushd $final_path
popd popd
# Email setup # Email setup
ynh_mysql_execute_as_root --database=$db_name < ../conf/mail.sql ynh_mysql_connect_as --user=$app --password="$db_pwd" --database=$db_name < ../conf/mail.sql
# Enable and set up the LDAP auth extension # Enable and set up the LDAP auth extension
ynh_script_progression --message="Enabling and configuring LDAP extension..." --weight=2 ynh_script_progression --message="Enabling and configuring LDAP extension..." --weight=2
activate_flarum_extension $db_name "tituspijean-auth-ldap" activate_flarum_extension $db_name "tituspijean-auth-ldap"
ynh_mysql_execute_as_root --database=$db_name < ../conf/ldap.sql ynh_mysql_connect_as --user=$app --password="$db_pwd" --database=$db_name < ../conf/ldap.sql
# Install, activate and set language extensions # Install, activate and set language extensions
case $language in case $language in

View file

@ -202,7 +202,7 @@ then
# Install and activate the LDAP auth extension # Install and activate the LDAP auth extension
activate_flarum_extension $db_name "tituspijean-auth-ldap" activate_flarum_extension $db_name "tituspijean-auth-ldap"
# Configure LDAP auth extension # Configure LDAP auth extension
ynh_mysql_execute_as_root --database=$db_name < ../conf/ldap.sql ynh_mysql_connect_as --user=$app --password="$db_pwd" --database=$db_name < ../conf/ldap.sql
fi fi
# Install, activate and set language extensions # Install, activate and set language extensions