Explorar el Código

fix fat32 handling

master
padre
commit
088f6c2e23
Se han modificado 1 ficheros con 3 adiciones y 3 borrados
  1. +3
    -3
      tasks/main.yml

+ 3
- 3
tasks/main.yml Ver fichero

@@ -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


Cargando…
Cancelar
Guardar