Puppet Class: secure_windows::stig::v73247

Defined in:
manifests/stig/v73247.pp

Overview

This class manages V-73247 Local volumes must use a format that supports NTFS attributes.

Parameters:

  • enforced (Boolean) (defaults to: false)


3
4
5
6
7
8
9
10
11
12
# File 'manifests/stig/v73247.pp', line 3

class secure_windows::stig::v73247 (
  Boolean $enforced = false,
) {
  if !$facts['volume_filesystem'] {
    notify { 'Not in compliance with DoD STIG V-73247':
      message  => 'Not in compliance with DoD STIG V-73247. Local volumes use a filesystem format other than NTFS or ReFS',
      loglevel => warning,
    }
  }
}