Sha256: da9bb73e74cd6509f4c6d79c65bc441073bd649fcfba49f3eb65893cd25290c9
Contents?: true
Size: 950 Bytes
Versions: 2
Compression:
Stored size: 950 Bytes
Contents
# Copyright (c) 2020 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details. # frozen_string_literal: true cs__scoped_require 'contrast/agent/inventory/policy/trigger_node' cs__scoped_require 'contrast/agent/patching/policy/policy' # classes required by patches in the policy cs__scoped_require 'contrast/core_extensions/inventory/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? !INVENTORY.enabled? end def node_type Contrast::Agent::Inventory::Policy::TriggerNode end end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
contrast-agent-3.8.5 | lib/contrast/agent/inventory/policy/policy.rb |
contrast-agent-3.8.4 | lib/contrast/agent/inventory/policy/policy.rb |