Skip to content

Commit

Permalink
Spread cmd over multiple lines, making the code a little more readable.
Browse files Browse the repository at this point in the history
  • Loading branch information
robertdebock committed Sep 22, 2021
1 parent cc6f27b commit a7b8723
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion handlers/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
# handlers file for grub

- name: update grub
ansible.builtin.command: "{{ grub_update_grub_command }}"
ansible.builtin.command:
cmd: "{{ grub_update_grub_command }}"
when:
- ansible_connection not in [ "container", "docker", "community.docker.docker" ]
notify:
Expand Down

0 comments on commit a7b8723

Please sign in to comment.