Skip to content

Commit 83a5648

Browse files
author
Simon Hulme
committed
Instance manifest
- Correct logic for variable definition check Signed-off-by: Simon Hulme <simon.hulme@cdl.co.uk>
1 parent 014da53 commit 83a5648

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

manifests/instance.pp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -445,7 +445,7 @@
445445
}
446446

447447
if $xpack {
448-
if (($ca_certificate == undef) and ($certificate == undef) and ($private_key == undef)) {
448+
if (($ca_certificate == undef) or ($certificate == undef) or ($private_key == undef)) {
449449
fail('ca_certificate, certificate and private_key required')
450450
}
451451

0 commit comments

Comments
 (0)