From 7de75fbd9e1dc6eaea6939227fc45b547b018e21 Mon Sep 17 00:00:00 2001 From: Rohit Thakur Date: Thu, 3 Nov 2022 20:13:04 +0530 Subject: [PATCH] add validated content plugin support (#201) * add validated content plugin support Signed-off-by: Rohit Thakur * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci Signed-off-by: Rohit Thakur Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> --- changelogs/fragments/ccontent_template_parser.yaml | 3 +++ plugins/action/cli_parse.py | 1 + 2 files changed, 4 insertions(+) create mode 100644 changelogs/fragments/ccontent_template_parser.yaml diff --git a/changelogs/fragments/ccontent_template_parser.yaml b/changelogs/fragments/ccontent_template_parser.yaml new file mode 100644 index 0000000..a9aad8b --- /dev/null +++ b/changelogs/fragments/ccontent_template_parser.yaml @@ -0,0 +1,3 @@ +--- +minor_changes: + - Add support for content template parser diff --git a/plugins/action/cli_parse.py b/plugins/action/cli_parse.py index 3a6a38a..d806db5 100644 --- a/plugins/action/cli_parse.py +++ b/plugins/action/cli_parse.py @@ -129,6 +129,7 @@ class ActionModule(ActionBase): # from ansible.netcommon collection if cref["cname"] == "netcommon" and cref["plugin"] in [ "native", + "content_templates", "ntc", "pyats", ]: