Puppet Class: sap::config

Defined in:
manifests/config.pp

Summary

Private class used to control configuration file deployment.

Overview

Orchestrates the creation of relevant configuration files needed by SAP



5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# File 'manifests/config.pp', line 5

class sap::config {
  contain sap::config::common
  contain sap::config::sysctl
  contain sap::config::limits

  if 'router' in $sap::enabled_components {
    contain sap::config::router
  }

  if 'base' in $sap::enabled_components {
    contain sap::config::tmpfs
  }

  # Create mount points
  if $sap::create_mount_points {
    contain sap::config::mount_points
  }
}