File tree Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change 5
5
case os [ :family ]
6
6
when 'debian' , 'ubuntu'
7
7
service_name = 'apache2'
8
- variant = :prefork
9
8
when 'redhat'
10
- variant = :prefork
11
9
service_name = 'httpd'
12
10
when 'freebsd'
13
11
service_name = 'apache24'
14
- variant = :prefork
15
12
end
16
13
17
14
# IAC-787: The http-itk mod package is not available in any of the standard RHEL/CentOS 8.x repos. Disable this test
18
15
# on those platforms until we can find a suitable source for this package.
19
16
describe 'apache::mod::itk class' , if : service_name && mod_supported_on_platform? ( 'apache::mod::itk' ) do
20
17
describe 'running puppet code' do
21
- pp = <<-MANIFEST
18
+ pp = <<-MANIFEST
22
19
class { 'apache':
23
20
mpm_module => 'prefork',
24
21
}
25
22
class { 'apache::mod::itk': }
26
- MANIFEST
23
+ MANIFEST
27
24
28
25
it 'behaves idempotently' do
29
26
idempotent_apply ( pp )
You can’t perform that action at this time.
0 commit comments