Explorar el Código

Merge "improve mkfs condition and make fs_type for partitioning optional"

pull/133/head
Filip Pytloun hace 7 años
padre
commit
1510389333
Se han modificado 2 ficheros con 3 adiciones y 1 borrados
  1. +2
    -0
      linux/storage/disk.sls
  2. +1
    -1
      linux/storage/mount.sls

+ 2
- 0
linux/storage/disk.sls Ver fichero

@@ -31,7 +31,9 @@ create_partition_{{ disk_name }}_{{ loop.index }}:
- name: partition.mkpart
- device: {{ disk_name }}
- part_type: primary
{%- if partition.type is defined %}
- fs_type: {{ partition.type }}
{%- endif %}
- start: {{ end_size }}MB
- end: {{ end_size + partition.size }}MB
- unless: "blkid {{ disk_name }}{{ loop.index }} {{ disk_name }}p{{ loop.index }}"

+ 1
- 1
linux/storage/mount.sls Ver fichero

@@ -10,7 +10,7 @@
mkfs_{{ mount.device}}:
cmd.run:
- name: "mkfs.{{ mount.file_system }} -L {{ name }} {{ mount.device }}"
- onlyif: "test `blkid {{ mount.device }} >/dev/null;echo $?` -eq 2"
- onlyif: "test `blkid {{ mount.device }} | grep -q TYPE;echo $?` -eq 1"
- require_in:
- mount: {{ mount.path }}
{%- if mount.file_system == 'xfs' %}

Cargando…
Cancelar
Guardar