From a008dabec53c79baa40b144ce8e99a8ee6bcb1e9 Mon Sep 17 00:00:00 2001 From: Daniel Berteaud Date: Sun, 7 Apr 2013 18:23:57 +0200 Subject: [PATCH] use uid as uuid --- root/etc/e-smith/templates/etc/e-smith/sql/init/ownclouddb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/root/etc/e-smith/templates/etc/e-smith/sql/init/ownclouddb b/root/etc/e-smith/templates/etc/e-smith/sql/init/ownclouddb index 970fec7..42a1a89 100644 --- a/root/etc/e-smith/templates/etc/e-smith/sql/init/ownclouddb +++ b/root/etc/e-smith/templates/etc/e-smith/sql/init/ownclouddb @@ -71,7 +71,7 @@ INSERT INTO appconfig (appid,configKey,configValue) VALUES ('user_ldap','ldap_ho INSERT INTO appconfig (appid,configKey,configValue) VALUES ('user_ldap','ldap_tls','0') ON DUPLICATE KEY UPDATE configValue=configValue; INSERT INTO appconfig (appid,configKey,configValue) VALUES ('user_ldap','ldap_login_filter','uid=%uid') ON DUPLICATE KEY UPDATE configValue=configValue; INSERT INTO appconfig (appid,configKey,configValue) VALUES ('user_ldap','user_ldaplist_filter','objectClass=sambaSamAccount') ON DUPLICATE KEY UPDATE configValue=configValue; -INSERT INTO appconfig (appid,configKey,configValue) VALUES ('user_ldap','ldap_uuid_attribute','entryuuid') ON DUPLICATE KEY UPDATE configValue=configValue; +INSERT INTO appconfig (appid,configKey,configValue) VALUES ('user_ldap','ldap_uuid_attribute','uid') ON DUPLICATE KEY UPDATE configValue=configValue; INSERT INTO appconfig (appid,configKey,configValue) VALUES ('user_ldap','types','authentication') ON DUPLICATE KEY UPDATE configValue=configValue; INSERT INTO appconfig (appid,configKey,configValue) VALUES ('user_ldap','ldap_configuration_active','1') ON DUPLICATE KEY UPDATE configValue=configValue;