Skip to content

Commit

Permalink
Ansible Lint, thank you.
Browse files Browse the repository at this point in the history
  • Loading branch information
robertdebock committed Jan 2, 2023
1 parent 5da24b7 commit 6b2b6d3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tasks/assert.yml
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@
when:
- item.access_log_prefix is defined

- name: test if item.access_log_suffix in tomcat_instances is set correctly
- name: Test if item.access_log_suffix in tomcat_instances is set correctly
ansible.builtin.assert:
that:
- item.access_log_suffix is string
Expand All @@ -365,7 +365,7 @@
when:
- item.access_log_suffix is defined

- name: test if item.access_log_pattern in tomcat_instances is set correctly
- name: Test if item.access_log_pattern in tomcat_instances is set correctly
ansible.builtin.assert:
that:
- item.access_log_pattern is string
Expand Down
1 change: 1 addition & 0 deletions tasks/lib.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
ansible.builtin.get_url:
url: "{{ lib.url }}"
dest: "{{ tomcat_directory }}//{{ instance.name }}/lib/"
mode: "0640"
when:
- lib.url is defined
notify:
Expand Down
1 change: 1 addition & 0 deletions tasks/war.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@
url: "{{ war.url }}"
dest: "{{ tomcat_directory }}//{{ instance.name }}/webapps/"
validate_certs: no
mode: "0640"
when:
- war.url is defined

0 comments on commit 6b2b6d3

Please sign in to comment.