Skip to content

Commit

Permalink
Exclude custom action plugins from linting
Browse files Browse the repository at this point in the history
  • Loading branch information
Tobias Richter committed Dec 6, 2019
1 parent 7749749 commit 1cfc83c
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 7 deletions.
4 changes: 0 additions & 4 deletions action_plugins/conga_aemdst_facts.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,6 @@

__metaclass__ = type

import os
import re

from ansible.module_utils._text import to_native
from ansible.plugins.action import ActionBase
from ansible.errors import AnsibleOptionsError

Expand Down
3 changes: 0 additions & 3 deletions action_plugins/curl_cmdline_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,7 @@

__metaclass__ = type

import re

from ansible.plugins.action import ActionBase
from ansible.template import Templar
from ansible.errors import AnsibleOptionsError

try:
Expand Down
2 changes: 2 additions & 0 deletions tasks/curl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@

- name: "Build curl command line."
curl_cmdline_helper:
tags:
- skip_ansible_lint

- debug:
var: conga_aemdst_curl_cmdline
Expand Down
2 changes: 2 additions & 0 deletions tasks/response-test.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
- name: "Evaluate conga_aemdst_facts."
conga_aemdst_facts:
conga_config: "{{ response_test_config }}"
tags:
- skip_ansible_lint

- name: "Output conga_aemdst_config."
debug:
Expand Down
2 changes: 2 additions & 0 deletions tasks/ssl-enforce-test.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
- name: "Evaluate conga_aemdst_facts."
conga_aemdst_facts:
conga_config: "{{ enforce_ssl_config }}"
tags:
- skip_ansible_lint

- name: "Output conga_aemdst_config."
debug:
Expand Down

0 comments on commit 1cfc83c

Please sign in to comment.