mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-04-04 00:04:14 +02:00
chenged ldap_uid to preferred_username
This commit is contained in:
parent
a9de544a8d
commit
2b3cdd58d6
@ -94,6 +94,11 @@ docker-compose exec -it -u www-data application /var/www/html/occ
|
|||||||
```
|
```
|
||||||
### User Administration
|
### User Administration
|
||||||
|
|
||||||
|
#### List Users
|
||||||
|
```bash
|
||||||
|
docker compose exec -it -u www-data application php occ user:list
|
||||||
|
```
|
||||||
|
|
||||||
#### Create user via CLI
|
#### Create user via CLI
|
||||||
```bash
|
```bash
|
||||||
docker compose exec -it -u www-data application php occ user:add {{username}}
|
docker compose exec -it -u www-data application php occ user:add {{username}}
|
||||||
|
@ -98,7 +98,7 @@ return array (
|
|||||||
'mail' => 'email',
|
'mail' => 'email',
|
||||||
# 'quota' => 'nextcloudQuota', # Not implemented yet
|
# 'quota' => 'nextcloudQuota', # Not implemented yet
|
||||||
# 'home' => 'homeDirectory', # Not implemented yet
|
# 'home' => 'homeDirectory', # Not implemented yet
|
||||||
'ldap_uid' => '{{ldap.attributes.user_id}}',
|
'ldap_uid' => 'preferred_username',
|
||||||
# 'groups' => 'ownCloudGroups', # Not implemented yet
|
# 'groups' => 'ownCloudGroups', # Not implemented yet
|
||||||
# 'login_filter' => 'realm_access_roles',
|
# 'login_filter' => 'realm_access_roles',
|
||||||
// 'photoURL' => 'picture',
|
// 'photoURL' => 'picture',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user