Puppet Class: postfix::params
- Inherited by:
-
postfix
- Defined in:
- manifests/params.pp
Overview
Class: postfix::params
This class provides the appropriate values for operating system specific variables.
Parameters
- mailx_package
-
(string) Name of package that provides mailx
-
- restart_cmd
-
(hash) Command to use when restarting postfix
-
- aliasesseltype
-
(string) Selinux type for /etc/aliases
-
- seltype
-
(string) Selinux type for /etc/postfix/* config files
-
- master_os_template
-
(string) Path to the master template
-
18 19 20 21 22 23 24 25 |
# File 'manifests/params.pp', line 18
class postfix::params (
String $mailx_package,
String $restart_cmd,
String $master_os_template,
Optional[String] $aliasesseltype,
Optional[String] $seltype,
) {
}
|