Sha256: 12e0f22eb4e03d2024a3cd51f5d2606ca91a69263c2db0bf154d82c65a59845d

Contents?: true

Size: 924 Bytes

Versions: 13

Compression:

Stored size: 924 Bytes

Contents

# Copyright (c) 2022 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

13 entries across 13 versions & 1 rubygems

Version Path
contrast-agent-6.11.0 lib/contrast/agent/inventory/policy/policy.rb
contrast-agent-6.10.0 lib/contrast/agent/inventory/policy/policy.rb
contrast-agent-6.9.0 lib/contrast/agent/inventory/policy/policy.rb
contrast-agent-6.8.0 lib/contrast/agent/inventory/policy/policy.rb
contrast-agent-6.7.0 lib/contrast/agent/inventory/policy/policy.rb
contrast-agent-6.6.5 lib/contrast/agent/inventory/policy/policy.rb
contrast-agent-6.6.4 lib/contrast/agent/inventory/policy/policy.rb
contrast-agent-6.6.3 lib/contrast/agent/inventory/policy/policy.rb
contrast-agent-6.6.2 lib/contrast/agent/inventory/policy/policy.rb
contrast-agent-6.6.1 lib/contrast/agent/inventory/policy/policy.rb
contrast-agent-6.6.0 lib/contrast/agent/inventory/policy/policy.rb
contrast-agent-6.5.1 lib/contrast/agent/inventory/policy/policy.rb
contrast-agent-6.5.0 lib/contrast/agent/inventory/policy/policy.rb