File tree Expand file tree Collapse file tree 3 files changed +11
-0
lines changed Expand file tree Collapse file tree 3 files changed +11
-0
lines changed Original file line number Diff line number Diff line change 1509
1509
# directories => [
1510
1510
# { path => '/path/to/different/dir',
1511
1511
# gssapi => {
1512
+ # basicauth => 'On',
1512
1513
# credstore => 'keytab:/foo/bar.keytab',
1513
1514
# localname => 'Off',
1514
1515
# sslonly => 'On',
Original file line number Diff line number Diff line change 252
252
'passenger_app_log_file' => '/tmp/app.log' ,
253
253
'passenger_debugger' => false ,
254
254
'gssapi' => {
255
+ 'basicauth' => 'On' ,
255
256
'credstore' => 'keytab:/foo/bar.keytab' ,
256
257
'localname' => 'On' ,
257
258
'sslonly' => 'Off' ,
943
944
content : %r{^\s +PassengerDebugger\s Off$} ,
944
945
)
945
946
}
947
+ it {
948
+ is_expected . to contain_concat__fragment ( 'rspec.example.com-directories' ) . with (
949
+ content : %r{^\s +GssapiBasicAuth\s On$} ,
950
+ )
951
+ }
946
952
it {
947
953
is_expected . to contain_concat__fragment ( 'rspec.example.com-directories' ) . with (
948
954
content : %r{^\s +GssapiCredStore\s keytab:/foo/bar.keytab$} ,
Original file line number Diff line number Diff line change 1
1
<%|
2
2
# https://github.com/gssapi/mod_auth_gssapi
3
+ Optional[Enum['On','Off']] $basicauth = undef,
3
4
Optional[String[1]] $credstore = undef,
4
5
Optional[Enum['On','Off']] $sslonly = undef,
5
6
Optional[Enum['On','Off']] $localname = undef,
6
7
|%>
7
8
# mod_auth_gssapi configuration
9
+ <% if $basicauth { -%>
10
+ GssapiBasicAuth <%= $basicauth %>
11
+ <% } -%>
8
12
<% if $sslonly { -%>
9
13
GssapiSSLonly <%= $sslonly %>
10
14
<% } -%>
You can’t perform that action at this time.
0 commit comments