-
Notifications
You must be signed in to change notification settings - Fork 89
New issue
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
add support for ed25519 password plugin in mysql_user #672
Comments
@hubiongithub i've just released 3.10.2 with the fix - can be installed via ansible-galaxy now or will appear in the ansible package in it's next minor release, thanks for the contribution! |
@Andersson007 |
@hubiongithub thanks for the feedback, I see it in two places now (downloaded the 3.10.2 archive associated with the tag), isn't it how it was supposed to be? You could edit the file yourself in this web ui and submit a PR directly from that view. If you do it directly, i think it'd be more effective:) I can't test this stuff locally |
@Andersson007 |
Followup to
#6
SUMMARY
add ed25519 plugin support in mysql_user
ISSUE TYPE
allow user to create and alter mariadb user with ed25519 plugin
COMPONENT NAME
mysql_user, module_utils/user.py
ADDITIONAL INFORMATION
https://mariadb.com/kb/en/create-user/#identified-viawith-authentication_plugin
According to the mentioned mariadb documentation, pam is using the "plugin_auth_string" as a string to identify the pam service
and ed25519 needs a hash or a cleartext password in the PASSWORD(%s) call. above code only works for the later one.
I tested these with ansible code like this:
The text was updated successfully, but these errors were encountered: