We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I tried passing in multiple ldap servers ldapserfver => 'server1, server2' which caused authconfig to fail:
I modified line 90 to put quotes around it: 90c90
$ldapserver_val = "--ldapserver=${ldapserver}"
This appears to have fixed it.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I tried passing in multiple ldap servers ldapserfver => 'server1, server2' which caused authconfig to fail:
Error: authconfig --enableldap --enableldapauth --enableldaptls --ldapbasedn='dc=example,dc=com' --ldapserver=ldap://ldap01.example.com, ldap://ldap02.example.com --disablemd5 --passalgo=sha512 --enableshadow --disablepreferdns --disableforcelegacy --disablepamaccess --disablecache --enablemkhomedir --enablesssd --enablesssdauth --updateall returned 2 instead of one of [0]
I modified line 90 to put quotes around it:
90c90
<$ldapserver_val = "--ldapserver="$ {ldapserver}""
This appears to have fixed it.
The text was updated successfully, but these errors were encountered: