Sha256: d2bac407bd6a4a3540aaf2a74ea17c92d623a654eb8759748919f8a0edf59e10

Contents?: true

Size: 926 Bytes

Versions: 9

Compression:

Stored size: 926 Bytes

Contents

# Copyright (c) 2021 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
# frozen_string_literal: true

require 'contrast/agent/inventory/policy/trigger_node'
require 'contrast/agent/patching/policy/policy'

# classes required by patches in the policy
require 'contrast/agent/inventory/policy/datastores'

module Contrast
  module Agent
    module Inventory
      module Policy
        # This is just a holder for our policy. Takes the policy JSON and
        # converts it into hashes that we can access nicely
        class Policy < Contrast::Agent::Patching::Policy::Policy
          def self.policy_folder
            'inventory'
          end

          def disabled_globally?
            !::Contrast::INVENTORY.enabled?
          end

          def node_type
            Contrast::Agent::Inventory::Policy::TriggerNode
          end
        end
      end
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
contrast-agent-4.14.1 lib/contrast/agent/inventory/policy/policy.rb
contrast-agent-4.14.0 lib/contrast/agent/inventory/policy/policy.rb
contrast-agent-4.13.1 lib/contrast/agent/inventory/policy/policy.rb
contrast-agent-4.13.0 lib/contrast/agent/inventory/policy/policy.rb
contrast-agent-4.12.0 lib/contrast/agent/inventory/policy/policy.rb
contrast-agent-4.11.0 lib/contrast/agent/inventory/policy/policy.rb
contrast-agent-4.10.0 lib/contrast/agent/inventory/policy/policy.rb
contrast-agent-4.9.1 lib/contrast/agent/inventory/policy/policy.rb
contrast-agent-4.9.0 lib/contrast/agent/inventory/policy/policy.rb