diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2016-03-24 12:23:07 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2016-03-24 12:23:07 -0300 |
commit | 815ac34985e362952309e39350928aa28115ce3d (patch) | |
tree | a398ec1ab7fdc885696a94b70bc283baa5992d99 /templates/mx-record.erb | |
parent | 846059203fcb843f18c06db7901ff6a2dd28f67d (diff) | |
download | puppet-bind-815ac34985e362952309e39350928aa28115ce3d.tar.gz puppet-bind-815ac34985e362952309e39350928aa28115ce3d.tar.bz2 |
Fix deprecation warnings
Diffstat (limited to 'templates/mx-record.erb')
-rw-r--r-- | templates/mx-record.erb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/mx-record.erb b/templates/mx-record.erb index a8ec89d..23b3a81 100644 --- a/templates/mx-record.erb +++ b/templates/mx-record.erb @@ -1,5 +1,5 @@ <% if ttl -%> -<%=owner%> <%=ttl%> IN MX <%=priority%> <%=host%> +<%=@owner%> <%=@ttl%> IN MX <%=@priority%> <%=@host%> <% else -%> -<%=owner%> IN MX <%=priority%> <%=host%> +<%=@owner%> IN MX <%=@priority%> <%=@host%> <% end -%> |