소스 검색

do fstab configuration in this role

master
부모
커밋
bbb8b7a121
2개의 변경된 파일15개의 추가작업 그리고 0개의 파일을 삭제
  1. +1
    -0
      defaults/main.yml
  2. +14
    -0
      tasks/main.yml

+ 1
- 0
defaults/main.yml 파일 보기

@@ -1 +1,2 @@
filesystems_state: mounted
fstab_file: "{{ root_target_directory | default('') }}/etc/fstab"

+ 14
- 0
tasks/main.yml 파일 보기

@@ -50,3 +50,17 @@
when:
filesystems_state == "mounted" or
filesystems_state == "formated"

- name: fstab
mount:
name: "{{ item.mount_point }}"
src: "{{ (item.uuid is defined | ternary('UUID=','')) + item.uuid | default(item.device) }}"
fstype: "{{ item.fstype }}"
opts: "{{ item.opts | default('defaults') }}"
state: present
fstab: "{{ fstab_file }}"
with_items: "{{ filesystems }}"
when:
filesystems_state == "configured" or
filesystems_state == "mounted" or
filesystems_state == "formated"

불러오는 중...
취소
저장