1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/spip_ynh.git synced 2024-09-03 20:25:59 +02:00

Fix db initialization

This commit is contained in:
Kay0u 2020-04-25 21:43:09 +02:00
parent c6892f1ddb
commit d6d2f2b37e
No known key found for this signature in database
GPG key ID: AE1DCADB6415A156
2 changed files with 4 additions and 1 deletions

View file

@ -4,7 +4,7 @@
# SET ALL CONSTANTS
#=================================================
pkg_dependencies="php-sqlite3"
pkg_dependencies="php7.0-sqlite3"
#=================================================
# EXPERIMENTAL HELPERS

View file

@ -147,6 +147,9 @@ ynh_local_curl "/ecrire/?suivant" "exec=install" "etape=3" "adresse_db=localhost
#ynh_local_curl "/ecrire/?suivant" "exec=install" "etape=ldap5" "adresse_ldap=localhost" "port_ldap=389" "tls_ldap=no" "protocole_ldap=3" "base_ldap=dc=yunohost,dc=org" "statut_ldap=$status" "ldap_login=sAMAccountName,uid,login,userid,cn,sn" "ldap_nom=cn" "ldap_email=mail" "ldap_bio=description"
#ynh_local_curl "/ecrire/?suivant" "exec=install" "etape=3" "ldap_present=true"
# Fix db initialization
ynh_local_curl "/ecrire/?exec=install" "etape=3b"
email=$(yunohost user info $admin | grep mail: | cut -d' ' -f2 | tr -d '\n')
ynh_local_curl "/ecrire/?suivant" "exec=install" "etape=3b" "adresse_db=localhost" "login_db=$db_name" "pass_db=$db_pwd" "server_db=mysql" "sel_db=$db_name" "nom=$admin" "email=$email" "login=$admin" "pass=$password" "pass_verif=$password"
ynh_local_curl "/ecrire/?suivant" "exec=install" "etape=fin"