From 994c126ac7fe27005eb85606db65006f44fc4d71 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?E=CC=81ric=20Gaspar?= <46165813+ericgaspar@users.noreply.github.com> Date: Mon, 24 Jun 2024 21:40:19 +0200 Subject: [PATCH] fix --- conf/galene-ldap.json | 14 ++++++++------ conf/groupname-ldap.json | 18 +++++++++++------- conf/groupname.json | 17 +++++++++++------ 3 files changed, 30 insertions(+), 19 deletions(-) diff --git a/conf/galene-ldap.json b/conf/galene-ldap.json index c271256..245d1a9 100644 --- a/conf/galene-ldap.json +++ b/conf/galene-ldap.json @@ -1,8 +1,10 @@ { - "httpAddress": "127.0.0.1:__PORT_LDAP__", - "ldapServer": "ldap://localhost:389", - "ldapBase": "ou=users,dc=yunohost,dc=org", - "key": __KEY__, - "groups": ["YunoHost_Users"], - "insecure": true + "httpAddress":"127.0.0.1:__PORT_LDAP__", + "ldapServer":"ldap://localhost:389", + "ldapBase":"ou=users,dc=yunohost,dc=org", + "key":"__KEY__", + "groups":[ + "YunoHost_Users" + ], + "insecure":true } diff --git a/conf/groupname-ldap.json b/conf/groupname-ldap.json index 81a4600..9a8f2ca 100644 --- a/conf/groupname-ldap.json +++ b/conf/groupname-ldap.json @@ -1,7 +1,11 @@ -"users": { - "description": "YunoHost User Group", - "public": true, - "authServer": "https://__DOMAIN__/auth/", - "authKeys": [__KEY__], - "auto-subgroups": true -} +{ + "users":{ + "description":"YunoHost User Group", + "public":true, + "authServer":"https://__DOMAIN__/auth/", + "authKeys":[ + "__KEY__" + ], + "auto-subgroups":true + } +} \ No newline at end of file diff --git a/conf/groupname.json b/conf/groupname.json index 7a285ae..a345d4b 100644 --- a/conf/groupname.json +++ b/conf/groupname.json @@ -1,7 +1,12 @@ -"users": { - "__ADMIN__": {"permissions": "op", "password": __PASSWORD_HASH__}, - "description": "__GROUP_DESCRIPTION__", - "public": true, - "allow-recording": true, - "auto-subgroups": true +{ + "users":{ + "__ADMIN__":{ + "permissions":"op", + "password":"__PASSWORD_HASH__" + }, + "description":"__GROUP_DESCRIPTION__", + "public":true, + "allow-recording":true, + "auto-subgroups":true + } }