Sha256: aeae49c602ac5515993f9e8aa9b3299ab9630c7ac39993e30ba97b2d09aa6805
Contents?: true
Size: 712 Bytes
Versions: 24
Compression:
Stored size: 712 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/components/logger' module Contrast module Agent # A Reaction from TeamServer which indicates the Agent should be disabled, # typically because some configuration setting did not satisfy requirements # set by the Organization's Administrator module DisableReaction extend Contrast::Components::Logger::InstanceMethods def self.run _reaction, level logger.with_level(level, 'Contrast received instructions to disable itself - Disabling now') ::Contrast::AGENT.disable! end end end end
Version data entries
24 entries across 24 versions & 1 rubygems