more linting

This commit is contained in:
willtome
2023-03-08 14:52:58 -05:00
parent 049b94aec4
commit d7d771c357
12 changed files with 44 additions and 32 deletions

View File

@@ -19,13 +19,15 @@
name: "{{ application }}"
allow_downgrade: true
register: result
notify: Printing to terminal application information
- name: Printing to terminal application information # noqa: no-handler
ansible.builtin.debug:
msg: "The application: {{ application }} was already installed"
when: not result.changed | bool
handlers:
- name: Printing to terminal application information
ansible.builtin.debug:
msg: "The application: {{ application }} has been installed"
when: result.changed | bool
- name: Printing to terminal application information
ansible.builtin.debug:
msg: "The application: {{ application }} was already installed"
when: not result.changed | bool