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
42d21322
Commit
42d21322
authored
Jul 22, 2013
by
Raphaël Pinson
Browse files
inet_interfaces defaults to all
parent
77aa4172
Changes
2
Hide whitespace changes
Inline
Side-by-side
manifests/init.pp
View file @
42d21322
...
...
@@ -49,7 +49,7 @@
# }
#
class
postfix
(
$inet_interfaces
=
'
localhost
'
,
$inet_interfaces
=
'
all
'
,
$mail_user
=
'vmail'
,
# postfix_mail_user
$mailman
=
false
,
$master_smtp
=
undef
,
# postfix_master_smtp
...
...
spec/classes/postfix_spec.rb
View file @
42d21322
...
...
@@ -20,7 +20,7 @@ describe 'postfix' do
it
{
should
contain_postfix__config
(
'myorigin'
).
with_value
(
'fqdn.example.com'
)
}
it
{
should
contain_postfix__config
(
'alias_maps'
).
with_value
(
'hash:/etc/aliases'
)
}
it
{
should
contain_postfix__config
(
'inet_interfaces'
).
with_value
(
'
localhost
'
)
}
it
{
should
contain_postfix__config
(
'inet_interfaces'
).
with_value
(
'
all
'
)
}
it
{
should
contain_mailalias
(
'root'
).
with_recipient
(
'nobody'
)
}
...
...
@@ -51,7 +51,7 @@ describe 'postfix' do
it
{
should
contain_postfix__config
(
'myorigin'
).
with_value
(
'fqdn.example.com'
)
}
it
{
should
contain_postfix__config
(
'alias_maps'
).
with_value
(
'hash:/etc/aliases'
)
}
it
{
should
contain_postfix__config
(
'inet_interfaces'
).
with_value
(
'
localhost
'
)
}
it
{
should
contain_postfix__config
(
'inet_interfaces'
).
with_value
(
'
all
'
)
}
it
{
should
contain_postfix__config
(
'sendmail_path'
)
}
it
{
should
contain_postfix__config
(
'newaliases_path'
)
}
it
{
should
contain_postfix__config
(
'mailq_path'
)
}
...
...
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