Skip to content

Commit 1febb3a

Browse files
authored
Merge pull request #231 from SUNET/richir-fix-optional-default-value
it seems the optional parameter needs undef as default
2 parents d51f27f + 8e40360 commit 1febb3a

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

manifests/mail/postfix.pp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44
String $alias_domains,
55
String $environment,
66
String $imap_domain,
7-
Optional[Integer] $message_size_limit,
87
Array[String] $relaying_servers,
98
String $short_domain,
109
String $smtp_domain,
11-
String $interface = 'ens3',
12-
Array[String] $mydestination = ['$myhostname', 'localhost.localdomain', 'localhost'],
13-
String $postfix_image = 'docker.sunet.se/mail/postfix',
14-
String $postfix_tag = 'SUNET-1',
15-
Array[String] $relay_servers = ['mf-tst-ng-1.sunet.se:587', 'mf-tst-ng-2.sunet.se:587'],
10+
String $interface = 'ens3',
11+
Optional[Integer] $message_size_limit = undef,
12+
Array[String] $mydestination = ['$myhostname', 'localhost.localdomain', 'localhost'],
13+
String $postfix_image = 'docker.sunet.se/mail/postfix',
14+
String $postfix_tag = 'SUNET-1',
15+
Array[String] $relay_servers = ['mf-tst-ng-1.sunet.se:587', 'mf-tst-ng-2.sunet.se:587'],
1616
)
1717
{
1818

0 commit comments

Comments
 (0)