ソースを参照

Extend by mkfs for XFS filesystem

Change-Id: I3a6a8fc227cb9abd785b342584038e34d57a4175
pull/100/merge
Jakub Pavlik 7年前
コミット
8e2140a8f4
2個のファイルの変更18行の追加1行の削除
  1. +2
    -1
      README.rst
  2. +16
    -0
      linux/storage/disk.sls

+ 2
- 1
README.rst ファイルの表示

@@ -1284,7 +1284,8 @@ disk without any existing partitions.
- size: 200 #size in MB
type: fat32
- size: 300 #size in MB
type: ext4
mkfs: True
type: xfs
/dev/vda1:
partitions:
- size: 5

+ 16
- 0
linux/storage/disk.sls ファイルの表示

@@ -32,6 +32,22 @@ create_partition_{{ disk_name }}_{{ loop.index }}:
- require:
- module: create_disk_label

{%- if partition.get('mkfs') %}

{%- if partition.type == "xfs" %}

mkfs_partition_{{ disk_name }}_{{ loop.index }}:
module.run:
- name: xfs.mkfs
- device: {{ disk_name }}{{ loop.index }}
- unless: "blkid {{ disk_name }}{{ loop.index }} {{ disk_name }}p{{ loop.index }} | grep xfs"
- require:
- module: create_partition_{{ disk_name }}_{{ loop.index }}

{%- endif %}

{%- endif %}

{% set end_size = end_size + partition.size -%}

{%- endfor %}

読み込み中…
キャンセル
保存