Selaa lähdekoodia

fix fat32 handling

master
vanhempi
commit
088f6c2e23
1 muutettua tiedostoa jossa 3 lisäystä ja 3 poistoa
  1. +3
    -3
      tasks/main.yml

+ 3
- 3
tasks/main.yml Näytä tiedosto

@@ -29,7 +29,7 @@
item.device is defined and (
filesystems_state == "mounted" or
filesystems_state == "formated" ) and
not item.fstype == "fat32"
not item.fstype == "vfat"

- name: format fat32
command: mkfs.fat -F32 {{ item.device }}
@@ -37,12 +37,12 @@
when:
item.device is defined and
filesystems_state == "formated" and
item.fstype == "fat32"
item.fstype == "vfat"

- name: mount filesystems
mount:
name: "{{ root_target_directory | default('') }}{{ root_target_directory is defined | ternary('/','') }}{{ item.mount_point }}"
src: "UUID={{ item.uuid }}"
src: "{{ (item.uuid is defined | ternary('UUID=','')) + item.uuid | default(item.device) }}"
fstype: "{{ item.fstype }}"
opts: '{{ item.mount_options | default("defaults") }}'
state: mounted


Loading…
Peruuta
Tallenna