소스 검색

Merge pull request #106 from slimakcz/lvm_mount_order

fix order for storage: first create lv and next mount this lv
pull/102/merge
Filip Pytloun 7 년 전
부모
커밋
5133402f89
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. +3
    -3
      linux/storage/init.sls

+ 3
- 3
linux/storage/init.sls 파일 보기

@@ -4,15 +4,15 @@ include:
{%- if storage.loopback|length > 0 %}
- linux.storage.loopback
{%- endif %}
{%- if storage.lvm|length > 0 %}
- linux.storage.lvm
{%- endif %}
{%- if storage.mount|length > 0 %}
- linux.storage.mount
{%- endif %}
{%- if storage.swap|length > 0 %}
- linux.storage.swap
{%- endif %}
{%- if storage.lvm|length > 0 %}
- linux.storage.lvm
{%- endif %}
{%- if storage.multipath.enabled %}
- linux.storage.multipath
{%- endif %}

Loading…
취소
저장