1
0
mirror of https://github.com/cmur2/dyndnsd.git synced 2025-07-01 22:30:19 +02:00

daemon: add host offlining by deleting the associated DNS records

This commit is contained in:
cn
2018-02-23 16:37:10 +01:00
parent 8d4e96a1dd
commit 147071da9e
5 changed files with 48 additions and 6 deletions

View File

@ -24,7 +24,7 @@ module Dyndnsd
def self.changed?(hostname, myips, hosts)
# myips order is always deterministic
(!hosts.include? hostname) || (hosts[hostname] != myips)
((!hosts.include? hostname) || (hosts[hostname] != myips)) && !myips.empty?
end
def self.span(operation, &block)