
Builds ephemeral ISO and target host images. Also replaces isogen (iso-builder) with a single ansible-driven build tool for both types of airship images used: ephemeral ISO as well as target QCOW2 images deployed to base nodes. Change-Id: I6d0368de771869e4e645a03d8a20f470b34602ab
10 lines
446 B
YAML
10 lines
446 B
YAML
- name: "mount-helper | Setting mount state to {{ state }} for /dev/disk/by-partlabel/{{ item.mount | hash('md5') }} at the mountpoint for {{ item.mount }}"
|
|
mount:
|
|
path: "{{ mount_offset }}{{ item.mount }}"
|
|
src: "/dev/disk/by-partlabel/{{ item.mount | hash('md5') }}"
|
|
fstype: "{{ item.filesystem.type }}"
|
|
opts: "{{ item.filesystem.fstab.options }}"
|
|
state: "{{ state }}"
|
|
fstab: "{{ fstab }}"
|
|
when: item.mount != 'none'
|