summaryrefslogtreecommitdiff
path: root/manifests/regexps.pp
blob: d05ad68883ca667c32d930690c34e0c4e382b26c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
class mail::regexps {
  file { "/etc/postfix/transport_regexp":
    ensure  => present,
    owner   => root,
    group   => root,
    mode    => 0644,
    notify  => Service['postfix'],
  }

  file { "/etc/postfix/virtual_regexp":
    ensure  => present,
    owner   => root,
    group   => root,
    mode    => 0644,
    notify  => Service['postfix'],
  }
}