Puppet Class: sendmail::mailertable::file
- Defined in:
-
manifests/mailertable/file.pp
Summary
Manage the Sendmail mailertable db file.
Overview
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# File 'manifests/mailertable/file.pp', line 11
class sendmail::mailertable::file (
Optional[String] $content = undef,
Optional[String] $source = undef,
) {
include sendmail::params
include sendmail::makeall
file { $sendmail::params::mailertable_file:
ensure => file,
content => $content,
source => $source,
owner => $sendmail::params::sendmail_user,
group => $sendmail::params::sendmail_group,
mode => '0644',
notify => Class['sendmail::makeall'],
}
}
|