Skip to content

Commit

Permalink
use lowercase for booleans
Browse files Browse the repository at this point in the history
  • Loading branch information
stafwag committed Jul 24, 2020
1 parent e2c4882 commit 637e49d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions roles/reset/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@
name: "{{ item }}"
state: stopped
enabled: no
failed_when: False
failed_when: false
with_items:
- k3s
- k3s-node

- name: Killall containerd-shim-runc-v2
command: killall -9 containerd-shim-runc-v2
failed_when: False
changed_when: False
failed_when: false
changed_when: false

- name: Umount k3s filesystems
include_tasks: umount_with_childeren.yml
Expand Down
2 changes: 1 addition & 1 deletion roles/reset/tasks/umount_with_childeren.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
register: get_mounted_filesystems
args:
executable: /bin/bash
failed_when: False
failed_when: false
changed_when: get_mounted_filesystems.stdout | length > 0

- name: Umount filesystem
Expand Down

0 comments on commit 637e49d

Please sign in to comment.