Skip to content

Commit

Permalink
postfix: added a couple of missing deps
Browse files Browse the repository at this point in the history
  • Loading branch information
Marc Fournier committed Jul 21, 2009
1 parent ca0e551 commit dfc16f3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
4 changes: 3 additions & 1 deletion manifests/definitions/hash.pp
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
ensure => $ensure,
mode => 600,
seltype => "postfix_etc_t",
require => Package["postfix"],
}

file {"${name}.db":
Expand All @@ -16,6 +17,7 @@
command => "postmap ${name}",
#creates => "${name}.db", # this prevents postmap from being run !
subscribe => File["${name}"],
refreshonly => true
refreshonly => true,
require => Package["postfix"],
}
}
1 change: 1 addition & 0 deletions manifests/definitions/transport.pp
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@
file => "/etc/postfix/transport",
line => "${name} ${destination}",
notify => Exec["generate /etc/postfix/transport.db"],
require => Package["postfix"],
}
}
1 change: 1 addition & 0 deletions manifests/definitions/virtual.pp
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@
file => "/etc/postfix/virtual",
line => "${name} ${destination}",
notify => Exec["generate /etc/postfix/virtual.db"],
require => Package["postfix"],
}
}

0 comments on commit dfc16f3

Please sign in to comment.