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
in file bertvv.mariadb/tasks/root-password.yml in some sections is missing set of password parameter. I fixed it like this
bertvv.mariadb/tasks/root-password.yml
- name: Check for previously set unix_socket in plugin column command: > mysql -N -s -S {{ mariadb_socket }} -u root -p{{ mariadb_root_password }} -e "SELECT plugin from mysql.user WHERE user = 'root'" register: plugin_root_result changed_when: plugin_root_result.stdout is search('unix_socket') when: root_pwd_check.rc == 0 tags: mariadb
with -p{{ mariadb_root_password }} ... It is also missing in Remove unix_socket plugin if previously set ...
-p{{ mariadb_root_password }}
Remove unix_socket plugin if previously set
The text was updated successfully, but these errors were encountered:
No branches or pull requests
in file
bertvv.mariadb/tasks/root-password.yml
in some sections is missing set of password parameter. I fixed it like thiswith
-p{{ mariadb_root_password }}
...It is also missing in
Remove unix_socket plugin if previously set
...The text was updated successfully, but these errors were encountered: