Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Projets publics
Puppet Camptocamp Postfix
Commits
dfc16f3a
Commit
dfc16f3a
authored
Jul 21, 2009
by
Marc Fournier
Browse files
postfix: added a couple of missing deps
parent
ca0e5510
Changes
3
Hide whitespace changes
Inline
Side-by-side
manifests/definitions/hash.pp
View file @
dfc16f3a
...
...
@@ -3,6 +3,7 @@ define postfix::hash ($ensure) {
ensure
=>
$ensure
,
mode
=>
600
,
seltype
=>
"postfix_etc_t"
,
require
=>
Package
[
"postfix"
],
}
file
{
"
${name}
.db"
:
...
...
@@ -16,6 +17,7 @@ define postfix::hash ($ensure) {
command
=>
"postmap
${name}
"
,
#creates => "${name}.db", # this prevents postmap from being run !
subscribe
=>
File
[
"
${name}
"
],
refreshonly
=>
true
refreshonly
=>
true
,
require
=>
Package
[
"postfix"
],
}
}
manifests/definitions/transport.pp
View file @
dfc16f3a
...
...
@@ -4,5 +4,6 @@ define postfix::transport ($ensure, $destination) {
file
=>
"/etc/postfix/transport"
,
line
=>
"
${name}
${destination}
"
,
notify
=>
Exec
[
"generate /etc/postfix/transport.db"
],
require
=>
Package
[
"postfix"
],
}
}
manifests/definitions/virtual.pp
View file @
dfc16f3a
...
...
@@ -4,5 +4,6 @@ define postfix::virtual ($ensure, $destination) {
file
=>
"/etc/postfix/virtual"
,
line
=>
"
${name}
${destination}
"
,
notify
=>
Exec
[
"generate /etc/postfix/virtual.db"
],
require
=>
Package
[
"postfix"
],
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment