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
|
# File 'manifests/init.pp', line 24
class sysctl (
Variant[Hash,Undef] $variable,
Boolean $purge,
Boolean $symlink99,
Stdlib::Absolutepath $binary,
Boolean $use_dir,
Stdlib::Absolutepath $conf_dir,
Variant[String,Integer,Undef] $owner,
Variant[String,Integer,Undef] $group,
Variant[String,Undef] $mode
) {
$variable.each |String $val, Hash $params| {
sysctl::variable { $val:
* => $params,
}
}
if $use_dir {
# if we're purging we should also recurse
$recurse = $purge
file { $conf_dir:
ensure => directory,
owner => $owner,
group => $group,
mode => $mode,
purge => $purge,
recurse => $recurse,
}
if $symlink99 and $conf_dir =~ /^\/etc\/[^\/]+$/ {
file { "${conf_dir}/99-sysctl.conf":
ensure => link,
target => '../sysctl.conf',
}
}
}
Sysctl::Define <||>
}
|