changeset 289:386881985a35

Make 4to6 proxy optional to match undef default
author IBBoard <dev@ibboard.co.uk>
date Sun, 16 Feb 2020 20:33:38 +0000
parents be66955bf27d
children 61e90445c899
files modules/website/manifests/https/multitld.pp
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/modules/website/manifests/https/multitld.pp	Sun Feb 16 20:11:00 2020 +0000
+++ b/modules/website/manifests/https/multitld.pp	Sun Feb 16 20:33:38 2020 +0000
@@ -1,7 +1,7 @@
 define website::https::multitld (
   Optional[String] $docroot = undef,
   Stdlib::IP::Address $ip = $website::primary_ip,
-  Stdlib::IP::Address::V6 $proxy_4to6_ip = undef,
+  Optional[Stdlib::IP::Address::V6] $proxy_4to6_ip = undef,
   Optional[Integer] $priority       = undef,
   String $base            = $name,
   Pattern[/^[a-z]+(\.[a-z]+)?$/] $main_tld = $website::tld,