Sha256: f08274d190705e91f18f7bce25785d8008fc65f787c760476e2cfe8e992d5e0d

Contents?: true

Size: 1.07 KB

Versions: 7

Compression:

Stored size: 1.07 KB

Contents

# frozen_string_literal: true

module Dyndnsd
  module Updater
    class CommandWithBindZone
      # @param domain [String]
      # @param updater_params [Hash{String => Object}]
      def initialize(domain, updater_params)
        @zone_file = updater_params['zone_file']
        @command = updater_params['command']
        @generator = Generator::Bind.new(domain, updater_params)
      end

      # @param db [Dyndnsd::Database]
      # @return [void]
      def update(db)
        # do not regenerate zone file (assumed to be persistent) if DB did not change
        return if !db.changed?

        Helper.span('updater_update') do |span|
          span.set_attribute('dyndnsd.updater.name', self.class.name&.split('::')&.last || 'None')

          # write zone file in bind syntax
          File.open(@zone_file, 'w') { |f| f.write(@generator.generate(db)) }
          # call user-defined command
          pid = fork do
            exec @command
          end

          # detach so children don't become zombies
          Process.detach(pid) if pid
        end
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
dyndnsd-3.4.8 lib/dyndnsd/updater/command_with_bind_zone.rb
dyndnsd-3.4.7 lib/dyndnsd/updater/command_with_bind_zone.rb
dyndnsd-3.4.6 lib/dyndnsd/updater/command_with_bind_zone.rb
dyndnsd-3.4.5 lib/dyndnsd/updater/command_with_bind_zone.rb
dyndnsd-3.4.4 lib/dyndnsd/updater/command_with_bind_zone.rb
dyndnsd-3.4.3 lib/dyndnsd/updater/command_with_bind_zone.rb
dyndnsd-3.4.2 lib/dyndnsd/updater/command_with_bind_zone.rb