Sha256: 0584a0bf223833753732cb165854a7c87aee6891c1e89a1ae1dc09454cb03ce0
Contents?: true
Size: 914 Bytes
Versions: 4
Compression:
Stored size: 914 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? !INVENTORY.enabled? end def node_type Contrast::Agent::Inventory::Policy::TriggerNode end end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems