File: params.pp

package info (click to toggle)
puppet-module-camptocamp-postfix 5.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 576 kB
  • sloc: ruby: 1,544; sh: 10; makefile: 4
file content (29 lines) | stat: -rw-r--r-- 764 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# @summary Default parameters
#
# This class provides the appropriate values for operating system specific variables.
#
# @param mailx_package
#   Name of package that provides mailx
#
# @param restart_cmd
#   Command to use when restarting postfix
#
# @param aliasesseltype
#   Selinux type for /etc/aliases
#
# @param seltype
#   Selinux type for /etc/postfix/* config files
#
# @param master_os_template
#   Path to the master template
#
# @api private
#
class postfix::params (
  String $mailx_package            = 'bsd-mailx',
  String $restart_cmd              = '/etc/init.d/postfix restart',
  String $master_os_template       = 'postfix/master.cf.debian.erb',
  Optional[String] $aliasesseltype = undef,
  Optional[String] $seltype        ='etc_t',
) {
}