Skip to content

Commit 7a4dcdf

Browse files
committed
(BUGFIX) Fix alignment
1 parent b76fe2c commit 7a4dcdf

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

manifests/server/firewall.pp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,17 @@
1111

1212
if ($open_http_port) {
1313
firewall { "${http_port} accept - puppetdb":
14-
dport => $http_port,
15-
proto => 'tcp',
16-
jump => 'accept',
14+
dport => $http_port,
15+
proto => 'tcp',
16+
jump => 'accept',
1717
}
1818
}
1919

2020
if ($open_ssl_port) {
2121
firewall { "${ssl_port} accept - puppetdb":
22-
dport => $ssl_port,
23-
proto => 'tcp',
24-
jump => 'accept',
22+
dport => $ssl_port,
23+
proto => 'tcp',
24+
jump => 'accept',
2525
}
2626
}
2727
}

0 commit comments

Comments
 (0)