Quellcode durchsuchen

make uuid optional

master
Ursprung
Commit
561130c758
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. +1
    -1
      tasks/main.yml

+ 1
- 1
tasks/main.yml Datei anzeigen

@@ -20,7 +20,7 @@
filesystem:
fstype: "{{ item.fstype }}"
dev: "{{ item.device }}"
opts: -U {{ item.uuid }}
opts: "{% if item.uuid is defined %}-U {{ item.uuid }}{% endif %}"
force: "{{ filesystems_state == 'formated' }}"
with_items: "{{ filesystems }}"
when:


Laden…
Abbrechen
Speichern