inkblot / puppet-bind

18 stars 81 forks source link

No updates if only difference is in TTL. #140

Open magior opened 6 years ago

magior commented 6 years ago

If the only difference in one record is in the TTL the nsupdate file isn't populated with "update add" command and Puppet keeps notify the difference on any run.

I think that inserting a check and returning newdata on rrdata_adds if @properties[:ttl] is not empty could be a possible workaround. Something like this on nsupdate.rb:

if (@properties[:ttl] == nil) resource[:ensure] === :absent ? [] : newdata - rrdata else resource[:ensure] === :absent ? [] : newdata end

jcharaoui commented 5 years ago

Tested and works for me!