Description of problem: I use authconfig to set up nss to use sssd: authconfig --enablesssd --updateall authconfig --enablesssdauth --updateall However, this does not configure automount to use sssd. I still need to manually add the following to /etc/nsswitch.conf: automount: files sss Version-Release number of selected component (if applicable): authconfig-6.2.10-14.fc25.x86_64 Expected results: It would be useful if the authconfig utility provided an option which configured autofs/automount to make use of sssd.
authconfig --enablesssd --updateall works for me if libsss_autofs is installed. (beware that there is a weak dependency between sssd-common and libsss_autofs) sh# grep sss /etc/nsswitch.conf passwd: files sss shadow: files sss group: files sss services: files sss netgroup: files sss sh# rpm -q libsss_autofs libsss_autofs-1.15.3-5.fc25.x86_64 sh# authconfig --enablesssd --updateall sh# grep sss /etc/nsswitch.conf passwd: files sss shadow: files sss group: files sss services: files sss netgroup: files sss automount: files sss