From 8a4bda210ccc94750d80a8d55b1e1356d6b01b2f Mon Sep 17 00:00:00 2001 From: weslambert Date: Fri, 21 May 2021 08:57:12 -0400 Subject: [PATCH] Allow config action to be used in local rules --- idstools/rule.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/idstools/rule.py b/idstools/rule.py index 17a5231..16ab646 100644 --- a/idstools/rule.py +++ b/idstools/rule.py @@ -53,7 +53,7 @@ # Rule actions we expect to see. actions = ( - "alert", "log", "pass", "activate", "dynamic", "drop", "reject", "sdrop") + "alert", "config", "log", "pass", "activate", "dynamic", "drop", "reject", "sdrop") class Rule(dict): """Class representing a rule.