-
Notifications
You must be signed in to change notification settings - Fork 795
Added support for RHSCL mysql versions and support for .mylogin.cnf for MySQL 5.6.6+ #1061
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -86,6 +86,8 @@ | |
$service_provider = $mysql::params::server_service_provider, | ||
$create_root_user = $mysql::params::create_root_user, | ||
$create_root_my_cnf = $mysql::params::create_root_my_cnf, | ||
$create_root_login_file = $mysql::params::create_root_login_file, | ||
$login_file = $mysql::params::login_file, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What is the expected workflow of passing a login file? Why is it using the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You need to create the login file first with mysql_config_editor, this creates an encrypted file. https://dev.mysql.com/doc/refman/5.6/en/mysql-config-editor.html |
||
$users = {}, | ||
$grants = {}, | ||
$databases = {}, | ||
|
Uh oh!
There was an error while loading. Please reload this page.