Skip to content
Merged
Show file tree
Hide file tree
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
16 changes: 14 additions & 2 deletions manifests/vhost.pp
Original file line number Diff line number Diff line change
Expand Up @@ -1765,7 +1765,7 @@
$ssl_certs_dir = $apache::params::ssl_certs_dir,
$ssl_protocol = undef,
$ssl_cipher = undef,
$ssl_honorcipherorder = undef,
Variant[Boolean, Enum['on', 'On', 'off', 'Off'], Undef] $ssl_honorcipherorder = undef,
Optional[Enum['none', 'optional', 'require', 'optional_no_ca']] $ssl_verify_client = undef,
$ssl_verify_depth = undef,
Optional[Enum['none', 'optional', 'require', 'optional_no_ca']] $ssl_proxy_verify = undef,
Expand Down Expand Up @@ -2029,6 +2029,18 @@
include apache::mod::mime
}

if $ssl_honorcipherorder =~ Boolean or $ssl_honorcipherorder == undef {
$_ssl_honorcipherorder = $ssl_honorcipherorder
} else {
$_ssl_honorcipherorder = $ssl_honorcipherorder ? {
'on' => true,
'On' => true,
'off' => false,
'Off' => false,
default => true,
}
}

if $auth_kerb and $ensure == 'present' {
include apache::mod::auth_kerb
}
Expand Down Expand Up @@ -2680,7 +2692,7 @@
# - $ssl_crl_check
# - $ssl_protocol
# - $ssl_cipher
# - $ssl_honorcipherorder
# - $_ssl_honorcipherorder
# - $ssl_verify_client
# - $ssl_verify_depth
# - $ssl_options
Expand Down
4 changes: 2 additions & 2 deletions spec/acceptance/apache_ssl_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ class { 'apache':
ssl_certs_dir => '/tmp',
ssl_protocol => 'test',
ssl_cipher => 'test',
ssl_honorcipherorder => 'test',
ssl_honorcipherorder => true,
ssl_verify_client => 'require',
ssl_verify_depth => 'test',
ssl_options => ['test', 'test1'],
Expand All @@ -89,7 +89,7 @@ class { 'apache':
it { is_expected.to contain 'SSLProxyEngine On' }
it { is_expected.to contain 'SSLProtocol test' }
it { is_expected.to contain 'SSLCipherSuite test' }
it { is_expected.to contain 'SSLHonorCipherOrder test' }
it { is_expected.to contain 'SSLHonorCipherOrder On' }
it { is_expected.to contain 'SSLVerifyClient require' }
it { is_expected.to contain 'SSLVerifyDepth test' }
it { is_expected.to contain 'SSLOptions test test1' }
Expand Down
46 changes: 46 additions & 0 deletions spec/defines/vhost_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -1986,6 +1986,52 @@
it { is_expected.to contain_concat__fragment('rspec.example.com-ssl') }
it { is_expected.not_to contain_concat__fragment('rspec.example.com-sslproxy') }
end
context 'ssl_honorcipherorder' do
let :params do
{
'docroot' => '/rspec/docroot',
'ssl' => true,
}
end

context 'ssl_honorcipherorder default' do
it { is_expected.to compile }
it { is_expected.to contain_concat__fragment('rspec.example.com-ssl').without_content(%r{^\s*SSLHonorCipherOrder}i) }
end

context 'ssl_honorcipherorder on' do
let :params do
super().merge({ 'ssl_honorcipherorder' => 'on' })
end

it { is_expected.to compile }
it { is_expected.to contain_concat__fragment('rspec.example.com-ssl').with_content(%r{^\s*SSLHonorCipherOrder\s+On$}) }
end
context 'ssl_honorcipherorder true' do
let :params do
super().merge({ 'ssl_honorcipherorder' => true })
end

it { is_expected.to compile }
it { is_expected.to contain_concat__fragment('rspec.example.com-ssl').with_content(%r{^\s*SSLHonorCipherOrder\s+On$}) }
end
context 'ssl_honorcipherorder off' do
let :params do
super().merge({ 'ssl_honorcipherorder' => 'off' })
end

it { is_expected.to compile }
it { is_expected.to contain_concat__fragment('rspec.example.com-ssl').with_content(%r{^\s*SSLHonorCipherOrder\s+Off$}) }
end
context 'ssl_honorcipherorder false' do
let :params do
super().merge({ 'ssl_honorcipherorder' => false })
end

it { is_expected.to compile }
it { is_expected.to contain_concat__fragment('rspec.example.com-ssl').with_content(%r{^\s*SSLHonorCipherOrder\s+Off$}) }
end
end
describe 'access logs' do
context 'single log file' do
let(:params) do
Expand Down
4 changes: 2 additions & 2 deletions templates/vhost/_ssl.erb
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
<%- if @ssl_cipher -%>
SSLCipherSuite <%= @ssl_cipher %>
<%- end -%>
<%- if @ssl_honorcipherorder -%>
SSLHonorCipherOrder <%= @ssl_honorcipherorder %>
<%- if not @ssl_honorcipherorder.nil? -%>
SSLHonorCipherOrder <%= scope.call_function('apache::bool2httpd', [@_ssl_honorcipherorder]) %>
<%- end -%>
<%- if @ssl_verify_client -%>
SSLVerifyClient <%= @ssl_verify_client %>
Expand Down