Skip to content

Commit

Permalink
ci: support ansible-lint and ansible-test 2.16
Browse files Browse the repository at this point in the history
Fix yamllint issue with markdownlint config

Use FQCN for community.general modules

Signed-off-by: Rich Megginson <[email protected]>
  • Loading branch information
richm committed Jan 6, 2024
1 parent d1e0a21 commit 6949f67
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .ansible-lint
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ exclude_paths:
- .markdownlint.yaml
- examples/roles/
mock_modules:
- ini_file
- community.general.ini_file
mock_roles:
- linux-system-roles.tlog
1 change: 1 addition & 0 deletions .markdownlint.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
# Default state for all rules
default: true

Expand Down
4 changes: 2 additions & 2 deletions tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
- "'cockpit' in ansible_facts.packages"

- name: Configure sssd services section
ini_file:
community.general.ini_file:
path: "{{ __tlog_sssd_conf }}"
section: sssd
option: "{{ item.key }}"
Expand All @@ -41,7 +41,7 @@
notify: Handler tlog_handler restart sssd

- name: Configure sssd proxy provider domain
ini_file:
community.general.ini_file:
path: "{{ __tlog_sssd_conf }}"
section: domain/nssfiles
option: "{{ item.key }}"
Expand Down

0 comments on commit 6949f67

Please sign in to comment.