Skip to content

Commit

Permalink
fixed wrong method of default values for Ansible
Browse files Browse the repository at this point in the history
  • Loading branch information
XaverStiensmeier committed Oct 29, 2024
1 parent 6ec4f5d commit 49b1061
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
- name: Make sure disks are available
failed_when: false
filesystem:
fstype: "{{ item.fstype or ext4 }}"
fstype: "{{ item.fstype | default('ext4') }}"
dev: "{{ item.device }}"
force: false
state: present
Expand Down

0 comments on commit 49b1061

Please sign in to comment.