Skip to content
GitLab
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
8a23f6d5
Commit
8a23f6d5
authored
Aug 28, 2009
by
Marc Fournier
Browse files
postfix: ensure had no default value in definitions.
parent
1c249d42
Changes
3
Hide whitespace changes
Inline
Side-by-side
manifests/definitions/hash.pp
View file @
8a23f6d5
...
...
@@ -9,7 +9,7 @@ Note: the content of the file is not managed by this definition.
Parameters
:
-
*
name
*
:
the
name
of
the
map
file
.
-
*
ensure
*
:
present
/
absent
-
*
ensure
*
:
present
/
absent
,
defaults
to
present
Requires
:
-
Class
[
"postfix"
]
...
...
@@ -29,7 +29,7 @@ Example usage:
}
*/
define
postfix::hash
(
$ensure
)
{
define
postfix::hash
(
$ensure
=
"present"
)
{
# selinux labels differ from one distribution to another
case
$operatingsystem
{
...
...
manifests/definitions/transport.pp
View file @
8a23f6d5
...
...
@@ -6,7 +6,7 @@ Manages content of the /etc/postfix/transport map.
Parameters
:
-
*
name
*
:
name
of
address
postfix
will
lookup
.
See
transport
(
5
)
.
-
*
destination
*
:
where
the
emails
will
be
delivered
to
.
See
transport
(
5
)
.
-
*
ensure
*
:
present
/
absent
-
*
ensure
*
:
present
/
absent
,
defaults
to
present
.
Requires
:
-
Class
[
"postfix"
]
...
...
@@ -33,9 +33,9 @@ Example usage:
}
*/
define
postfix::transport
(
$ensure
,
$destination
)
{
define
postfix::transport
(
$ensure
=
"present"
,
$destination
)
{
line
{
"
${name}
${destination}
"
:
ensure
=>
present
,
ensure
=>
$ensure
,
file
=>
"/etc/postfix/transport"
,
line
=>
"
${name}
${destination}
"
,
notify
=>
Exec
[
"generate /etc/postfix/transport.db"
],
...
...
manifests/definitions/virtual.pp
View file @
8a23f6d5
...
...
@@ -6,7 +6,7 @@ Manages content of the /etc/postfix/virtual map.
Parameters
:
-
*
name
*
:
name
of
address
postfix
will
lookup
.
See
virtual
(
8
)
.
-
*
destination
*
:
where
the
emails
will
be
delivered
to
.
See
virtual
(
8
)
.
-
*
ensure
*
:
present
/
absent
-
*
ensure
*
:
present
/
absent
,
defaults
to
present
.
Requires
:
-
Class
[
"postfix"
]
...
...
@@ -33,9 +33,9 @@ Example usage:
}
*/
define
postfix::virtual
(
$ensure
,
$destination
)
{
define
postfix::virtual
(
$ensure
=
"present"
,
$destination
)
{
line
{
"
${name}
${destination}
"
:
ensure
=>
present
,
ensure
=>
$ensure
,
file
=>
"/etc/postfix/virtual"
,
line
=>
"
${name}
${destination}
"
,
notify
=>
Exec
[
"generate /etc/postfix/virtual.db"
],
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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