-
-
Notifications
You must be signed in to change notification settings - Fork 689
Open
Description
autoconfiguration hangs on cookbooks/mysql/libraries/mysql_service_base.rb line 91
Cookbook version mysql 10.1.3
Version of chef-client 17.0.242
OS Ubuntu 20.04
Steps to reproduce the behavior:
mysql_service 'epc' do
initial_root_password node.run_state['root_pass']
bind_address node['rds_epc']['bind_address']
action [:create, :start]
end
ruby_block 'wait for service start' do
block do
sleep(30)
end
action :run
end
if node.run_state['rds_mode'] == 'service'
mariadb_database node.run_state['db_name'] do
password node.run_state['root_pass']
host '127.0.0.1'
user 'root'
action :create
end
mariadb_user node.run_state['db_user'] do
ctrl_password node.run_state['root_pass']
database_name node.run_state['db_name']
password node.run_state['user_pass']
ctrl_host '127.0.0.1'
host '%'
action [:create, :grant]
end
end
Metadata
Metadata
Assignees
Labels
No labels