Skip to content

#puppethack allow undef value for bind-address #1035

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

Merged
merged 2 commits into from
Dec 7, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions spec/classes/mysql_server_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,19 @@

it { is_expected.to contain_file('/tmp/error.log') }
end
context 'default bind-address' do
it { is_expected.to contain_file('mysql-config-file').with_content(%r{^bind-address = 127.0.0.1}) }
end
context 'with defined bind-address' do
let(:params) { { override_options: { 'mysqld' => { 'bind-address' => '1.1.1.1' } } } }

it { is_expected.to contain_file('mysql-config-file').with_content(%r{^bind-address = 1.1.1.1}) }
end
context 'without bind-address' do
let(:params) { { override_options: { 'mysqld' => { 'bind-address' => :undef } } } }

it { is_expected.to contain_file('mysql-config-file').without_content(%r{^bind-address}) }
end
end

context 'mysql::server::root_password' do
Expand Down