Skip to content

Commit 82053a7

Browse files
committed
refactor: support ansible 2.19; fix ansible-lint issues
Signed-off-by: Rich Megginson <[email protected]>
1 parent 92fed67 commit 82053a7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tests/tasks/check_header.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
- name: Check for presence of ansible managed header, fingerprint
1010
assert:
1111
that:
12-
- ansible_managed in content
12+
- __ansible_managed in content
1313
- __fingerprint in content
1414
vars:
1515
content: "{{ (__file_content | d(__content)).content | b64decode }}"
16-
ansible_managed: "{{ lookup('template', 'get_ansible_managed.j2') }}"
16+
__ansible_managed: "{{ lookup('template', 'get_ansible_managed.j2') }}"

tests/tests_ntp_provider6.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@
9191
vars:
9292
timesync_ntp_provider: "{{ timesync_ntp_provider_os_default }}"
9393

94-
- name: Verify provider set correctly
94+
- name: Verify provider set correctly - 2
9595
tags: tests::verify
9696
block:
9797
- name: Wait for services to start

0 commit comments

Comments
 (0)