From 3ab1a13dbe0d0a1129c77ee2561ed5a9f0903c31 Mon Sep 17 00:00:00 2001 From: Kenyon Ralph Date: Mon, 11 Dec 2023 12:10:45 -0800 Subject: [PATCH] host: order required parameters before optional --- manifests/host.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifests/host.pp b/manifests/host.pp index afe428be..274fbba8 100644 --- a/manifests/host.pp +++ b/manifests/host.pp @@ -44,8 +44,8 @@ # @param on_expiry # An array with statements to go into the hook on expiry. define dhcp::host ( - Optional[Stdlib::IP::Address] $ip = undef, Dhcp::Mac $mac, + Optional[Stdlib::IP::Address] $ip = undef, String $ddns_hostname = $name, Hash $options = {}, Optional[String[1]] $comment = undef,