File tree 4 files changed +10
-12
lines changed
4 files changed +10
-12
lines changed Original file line number Diff line number Diff line change @@ -17,8 +17,6 @@ fixtures:
17
17
postgresql :
18
18
repo : ' https://github.com/puppetlabs/puppetlabs-postgresql.git'
19
19
ref : ' v9.2.0'
20
- firewall :
21
- repo : ' https://github.com/puppetlabs/puppetlabs-firewall.git'
22
- ref : ' v6.0.0'
20
+ firewall : ' https://github.com/puppetlabs/puppetlabs-firewall.git'
23
21
symlinks :
24
22
puppetdb : ' #{source_dir}'
Original file line number Diff line number Diff line change 11
11
12
12
if ($open_http_port ) {
13
13
firewall { "${http_port} accept - puppetdb" :
14
- dport => $http_port ,
15
- proto => ' tcp' ,
16
- action => ' accept' ,
14
+ dport => $http_port ,
15
+ proto => ' tcp' ,
16
+ jump => ' accept' ,
17
17
}
18
18
}
19
19
20
20
if ($open_ssl_port ) {
21
21
firewall { "${ssl_port} accept - puppetdb" :
22
- dport => $ssl_port ,
23
- proto => ' tcp' ,
24
- action => ' accept' ,
22
+ dport => $ssl_port ,
23
+ proto => ' tcp' ,
24
+ jump => ' accept' ,
25
25
}
26
26
}
27
27
}
Original file line number Diff line number Diff line change 18
18
},
19
19
{
20
20
"name" : " puppetlabs/firewall" ,
21
- "version_requirement" : " >= 1.1.3 < 7 .0.0"
21
+ "version_requirement" : " >= 7.0.0 < 8 .0.0"
22
22
},
23
23
{
24
24
"name" : " puppetlabs/stdlib" ,
Original file line number Diff line number Diff line change 21
21
. with (
22
22
dport : with [ :http_port ] ,
23
23
proto : 'tcp' ,
24
- action : 'accept' ,
24
+ jump : 'accept' ,
25
25
)
26
26
}
27
27
31
31
. with (
32
32
dport : with [ :ssl_port ] ,
33
33
proto : 'tcp' ,
34
- action : 'accept' ,
34
+ jump : 'accept' ,
35
35
)
36
36
}
37
37
end
You can’t perform that action at this time.
0 commit comments