Puppet Class: compliance_markup::test
- Defined in:
- manifests/test.pp
Overview
This should be called before any classes upon which you wish to enforce policies
9 10 11 12 13 14 15 |
# File 'manifests/test.pp', line 9
class compliance_markup::test (
$testvariable = 'none',
){
notify { 'compliance_markup::test':
message => "compliance_markup::test::testvariable = ${testvariable}",
}
}
|