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

Parameters:

  • settings (Hash[String, String]) (defaults to: {})

    Hash of settings to enforce as key-value pairs, eg: $settings = “TE”=>“ON”



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
    }
  }
}