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
2ed15824
Commit
2ed15824
authored
Apr 17, 2012
by
Marc Fournier
Browse files
Removed backslash, no longer needed since
596e6732
.
parent
c6044570
Changes
1
Hide whitespace changes
Inline
Side-by-side
manifests/mta.pp
View file @
2ed15824
...
...
@@ -20,7 +20,7 @@
# node 'toto.example.com' {
# $postfix_relayhost = 'mail.example.com'
# $postfix_smtp_listen = '0.0.0.0'
# $postfix_mydestination = '
\
$myorigin, myapp.example.com'
# $postfix_mydestination = '$myorigin, myapp.example.com'
#
# include postfix::mta
#
...
...
@@ -33,12 +33,12 @@
class
postfix::mta
{
case
$postfix_relayhost
{
''
:
{
fail
(
'Required
\
$postfix_relayhost variable is not defined.'
)
}
''
:
{
fail
(
'Required $postfix_relayhost variable is not defined.'
)
}
default
:
{}
}
case
$postfix_mydestination
{
''
:
{
$postfix_mydestination
=
'
\
$myorigin'
}
''
:
{
$postfix_mydestination
=
'$myorigin'
}
default
:
{}
}
...
...
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