Skip to content

Commit

Permalink
improved comments and naming
Browse files Browse the repository at this point in the history
  • Loading branch information
XaverStiensmeier committed Oct 25, 2024
1 parent 12b4487 commit d732f4e
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@
force: false
state: present

- name: Get the filesystem type of the device using lsblk
- name: Get volume filesystem using lsblk
command: "lsblk -no FSTYPE {{ item.device }}"
register: filesystem_type
until: filesystem_type.stdout != ""
retries: 5 # Adjust the number of retries as needed
delay: 2 # Wait 2 seconds between each retry
retries: 5
delay: 2
changed_when: false

- name: Log the filesystem type
Expand Down

0 comments on commit d732f4e

Please sign in to comment.