summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMicah Anderson <micah@leap.se>2013-10-30 13:31:26 -0400
committerMicah Anderson <micah@leap.se>2013-10-31 11:12:43 -0400
commit747bfed900f53461fa342d7fa2c44b9275d3a8d1 (patch)
tree2b90972f16988bbc5b07b2082fbcab3b3617c975
parent94db97455250a3eb92ed7e55c23ce0f6d991e206 (diff)
require postfix is installed before installing postfix-pcre (#4223)
Change-Id: I547b99becb8b16fec0ac89f06fb6d833cbde3c2b
-rw-r--r--puppet/modules/site_postfix/manifests/mx/checks.pp2
1 files changed, 1 insertions, 1 deletions
diff --git a/puppet/modules/site_postfix/manifests/mx/checks.pp b/puppet/modules/site_postfix/manifests/mx/checks.pp
index 6b19891c..5d75a5e5 100644
--- a/puppet/modules/site_postfix/manifests/mx/checks.pp
+++ b/puppet/modules/site_postfix/manifests/mx/checks.pp
@@ -22,7 +22,7 @@ class site_postfix::mx::checks {
}
# Anonymize the user's home IP from the email headers (Feature #3866)
- package { 'postfix-pcre': ensure => installed }
+ package { 'postfix-pcre': ensure => installed, require => Package['postfix'] }
file { '/etc/postfix/checks/received_anon':
source => 'puppet:///modules/site_postfix/checks/received_anon',