3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
# File 'manifests/bolt.pp', line 3
class psick::bolt (
Variant[Boolean,String] $ensure = present,
String $master_class = '::psick::bolt::master',
String $node_class = '::psick::bolt::node',
String $bolt_user = 'bolt',
Optional[String] $bolt_user_pub_key = undef,
Optional[String] $bolt_user_priv_key = undef,
String $ssh_user = 'root',
String $master = '',
Optional[Enum['storeconfigs','static']] $keyshare_method = 'storeconfigs',
Boolean $auto_prereq = $::psick::auto_prereq,
Boolean $is_master = false,
Boolean $is_node = true,
Hash $projects_hash = {},
) {
if $is_node {
contain $node_class
}
if $is_master {
contain $master_class
}
$projects_hash.each | $k,$v | {
psick::bolt::project { $k:
* => $v,
}
}
}
|