Skip to content

Commit

Permalink
Do not allow Globus v5 GridFTP port to change, no way to change it wi…
Browse files Browse the repository at this point in the history
…th various commands
  • Loading branch information
treydock committed Dec 11, 2020
1 parent c175d8d commit d3441f0
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion manifests/config.pp
Expand Up @@ -194,7 +194,14 @@
}

if $globus::manage_firewall {
if String($globus::version) == '5' or $globus::include_io_server {
if String($globus::version) == '5' {
firewall { '500 allow GridFTP control channel':
action => 'accept',
dport => 2811,
proto => 'tcp',
}
}
if String($globus::version) == '4' and $globus::include_io_server {
firewall { '500 allow GridFTP control channel':
action => 'accept',
dport => $globus::gridftp_server_port,
Expand Down

0 comments on commit d3441f0

Please sign in to comment.