Commit a1734678 by ansible

no message

1 parent dff85b4c
Showing with 2 additions and 2 deletions
...@@ -3,11 +3,11 @@ ...@@ -3,11 +3,11 @@
become: true become: true
tasks: tasks:
# Read device information (always use unit when probing) # Read device information (always use unit when probing)
- parted: device={{ app_disk }} unit=MiB - parted: device="{{ app_disk }}" unit=MiB
register: sdb_info register: sdb_info
# Remove all partitions from disk # Remove all partitions from disk
- parted: - parted:
device: {{ app_disk }} device: "{{ app_disk }}"
number: "{{ item.num }}" number: "{{ item.num }}"
state: absent state: absent
with_items: with_items:
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!