Sha256: b9c8889fef14887b44b7c9df58237696a596877fb8d9e969eb248dea6b7a4a7a

Contents?: true

Size: 924 Bytes

Versions: 18

Compression:

Stored size: 924 Bytes

Contents

# Copyright (c) 2023 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.enable
          end

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

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
contrast-agent-7.6.1 lib/contrast/agent/inventory/policy/policy.rb
contrast-agent-7.6.0 lib/contrast/agent/inventory/policy/policy.rb
contrast-agent-7.5.0 lib/contrast/agent/inventory/policy/policy.rb
contrast-agent-7.4.1 lib/contrast/agent/inventory/policy/policy.rb
contrast-agent-7.4.0 lib/contrast/agent/inventory/policy/policy.rb
contrast-agent-7.3.2 lib/contrast/agent/inventory/policy/policy.rb
contrast-agent-7.3.1 lib/contrast/agent/inventory/policy/policy.rb
contrast-agent-7.3.0 lib/contrast/agent/inventory/policy/policy.rb
contrast-agent-7.2.0 lib/contrast/agent/inventory/policy/policy.rb
contrast-agent-7.1.0 lib/contrast/agent/inventory/policy/policy.rb
contrast-agent-7.0.0 lib/contrast/agent/inventory/policy/policy.rb
contrast-agent-6.15.3 lib/contrast/agent/inventory/policy/policy.rb
contrast-agent-6.15.2 lib/contrast/agent/inventory/policy/policy.rb
contrast-agent-6.15.1 lib/contrast/agent/inventory/policy/policy.rb
contrast-agent-6.15.0 lib/contrast/agent/inventory/policy/policy.rb
contrast-agent-6.14.0 lib/contrast/agent/inventory/policy/policy.rb
contrast-agent-6.13.0 lib/contrast/agent/inventory/policy/policy.rb
contrast-agent-6.12.0 lib/contrast/agent/inventory/policy/policy.rb