Defined Type: wildfly::jgroups::stack
- Defined in:
- manifests/jgroups/stack.pp
Overview
Configures jgroups stacks
4 5 6 7 8 9 10 11 12 13 14 15 16 |
# File 'manifests/jgroups/stack.pp', line 4
define wildfly::jgroups::stack(
Array[Variant[Hash, String]] $protocols,
Hash $transport,
) {
wildfly::resource { "/subsystem=jgroups/stack=${title}":
recursive => true,
content => {
'protocol' => wildfly::objectify($protocols),
'transport' => $transport,
}
}
}
|