Due to historical reasons I have different parent directories for `homeDirectory`, e.g.,
```
/home/u1
/home-xx/u2
```
I want to map all of them to `home`. In `nslcd` it is possible by using:
```
map passwd homeDirectory "/home/$uid"
```
Is it possible to override an attribute for all users in sssd?
I found it out:
``` override_homedir = /home/%u ```
More info: https://man.archlinux.org/man/sssd.conf.5#NSS_configuration_options
---
There are many manual pages about sssd configuration options so I recommend having an overview first.
Most important distinction for me was that the attributes [1] are separated from the general options [2] even the attributes [1] can be used in [2].
[1] https://man.archlinux.org/man/sssd-ldap-attributes.5 [2] https://man.archlinux.org/man/sssd.conf.5
sssd-users@lists.fedorahosted.org