more linting
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user