Puppet Class: postfix::params

Inherited by:
postfix
Defined in:
manifests/params.pp

Summary

Default parameters

Overview

This class provides the appropriate values for operating system specific variables.

Parameters:

  • mailx_package (String)

    Name of package that provides mailx

  • restart_cmd (String)

    Command to use when restarting postfix

  • aliasesseltype (Optional[String])

    Selinux type for /etc/aliases

  • seltype (Optional[String])

    Selinux type for /etc/postfix/* config files

  • master_os_template (String)

    Path to the master template



22
23
24
25
26
27
28
29
# File 'manifests/params.pp', line 22

class postfix::params (
  String $mailx_package,
  String $restart_cmd,
  String $master_os_template,
  Optional[String] $aliasesseltype,
  Optional[String] $seltype,
) {
}