Puppet Class: storm::gridftp
- Defined in:
- manifests/gridftp.pp
Summary
StoRM GridFTP puppet moduleOverview
Parameters
The StoRM GridFTP configuration parameters are:
-
port
: the port used by GridFTP server service; -
port_range
: the range of ports used by transfer sockets; format is 'MIN,MAX'; -
connections_max
: the number of max allowed connections to server;
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 |
# File 'manifests/gridftp.pp', line 57
class storm::gridftp (
Integer $port,
String $port_range,
Integer $connections_max,
String $log_single,
String $log_transfer,
Boolean $redirect_lcmaps_log,
String $llgt_log_file,
Integer $lcmaps_debug_level,
Integer $lcas_debug_level,
Boolean $load_storm_dsi_module,
String $log_level,
Optional[String] $data_interface,
) {
contain storm::gridftp::install
contain storm::gridftp::config
contain storm::gridftp::service
Class['storm::gridftp::install']
-> Class['storm::gridftp::config']
-> Class['storm::gridftp::service']
}
|