瀏覽代碼

fix fat32 handling

master
父節點
當前提交
088f6c2e23
共有 1 個檔案被更改,包括 3 行新增3 行删除
  1. +3
    -3
      tasks/main.yml

+ 3
- 3
tasks/main.yml 查看文件

@@ -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…
取消
儲存