-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy path1.pp
More file actions
63 lines (57 loc) · 808 Bytes
/
1.pp
File metadata and controls
63 lines (57 loc) · 808 Bytes
1
2
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# passing manifest 1
class 1 (
$arg1 = 1,
$arg2 =
2,
$arg3 = [
1,
2,
],
$arg4 = {
1 => 2,
3 => 4,
},
$arg5 = (
1 + 1
),
) {
file { '/abc':
ensure => 'file',
content =>
file('abc'),
require => [
File['def'],
],
}
file {
[
'/def',
]:
ensure => 'directory';
'ghi':
ensure => 'file',
content => file('ghi');
'jkl':
ensure => 'file'
content => $::osfamily ? {
'RedHat' => 'jkl',
default => 'jklol',
};
[
'mno',
'pqr',
]:
ensure => (
'file'
),
content => (
'stuff'
);
}
$groups = if $arg1 { ['wheel'] } else { [] }
$nested_groups = if $arg1 {
['wheel']
} else {
[]
}
}