Puppet Class: crypto_win::event_logging
- Defined in:
-
manifests/event_logging.pp
Overview
Class: crypto_win::event_logging
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# File 'manifests/event_logging.pp', line 2
class crypto_win::event_logging {
if $crypto_win::event_logging {
$event_logging_enabled = 0
} else {
$event_logging_enabled = 7
}
registry_value { 'EventLogging':
ensure => present,
path => 'HKLM\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\EventLogging',
type => dword,
data => $event_logging_enabled,
}
}
|