hubiongithub
hubiongithub
@Andersson007 MariaDB and MySQL have different Syntax when it comes to create users with some plugins With PAM MariadB uses the plugin name "pam"and MySQL uses "auth_pam" (maybe that changed...
Manual tests: MySQL 8.0.30-22 Both syntax create user user1@localhost IDENTIFIED WITH 'auth_pam' AS 'service'; create user user1@localhost IDENTIFIED WITH 'auth_pam' BY 'service'; Resulst in mysql.user table entry (select user,host,plugin,authentication_string from...
@Andersson007 A short look into "tests/integration/targets/test_mysql_user/tasks" I see - create_user.yml - test_user_plugin_auth.yml both included from main.yml test_user_plugin_auth.yml is probably the right place to start, but only tests "sha256_password" and "mysql_native_password",...
@Andersson007 is there anything to do to get a PR "ready to merge"? the sync fork button shows: "This branch is not behind the upstream ansible-collections:main" From the point of...
Hello I'm not sure if I stumbled over this exact problem some time ago, but I made an extra tasks in my playbook for mariadb I added` login_unix_socket` with the...