Puppet Class: aix_tidy::trustchk
- Defined in:
- manifests/trustchk.pp
Overview
Aix_tidy::Trustchk
Manage Trusted Execution (TE) with Puppet on AIX using the trustchk command
7 8 9 10 11 12 13 14 15 16 |
# File 'manifests/trustchk.pp', line 7
class aix_tidy::trustchk(
Hash[String, String] $settings = {}
) {
$settings.each |$key, $value| {
aix_trustchk { $key:
value => $value
}
}
}
|