35 lines
1.6 KiB
YAML
35 lines
1.6 KiB
YAML
- debug:
|
||
msg: '{{ role_name }}'
|
||
- debug:
|
||
msg: '{{ role_path|basename }}'
|
||
- import_tasks: setup.yml
|
||
|
||
- include_vars: "{{ lookup('first_found', search) }}"
|
||
vars:
|
||
search:
|
||
files:
|
||
- '{{ ansible_distribution }}-{{ ansible_distribution_version }}.yml'
|
||
- 'default.yml'
|
||
paths:
|
||
- '../vars/'
|
||
|
||
- include_tasks: create_fs.yml
|
||
vars:
|
||
dev: '{{ ansible_user_dir }}/ansible_testing/img'
|
||
fstype: '{{ item.key }}'
|
||
fssize: '{{ item.value.fssize }}'
|
||
grow: '{{ item.value.grow }}'
|
||
when:
|
||
- 'not (item.key == "btrfs" and ansible_system == "FreeBSD")'
|
||
- 'not (item.key == "ocfs2" and ansible_os_family != "Debian")'
|
||
# On Ubuntu trusty, blkid (2.20.1) is unable to identify filesystem smaller than 256Mo, see:
|
||
# https://www.kernel.org/pub/linux/utils/util-linux/v2.21/v2.21-ChangeLog
|
||
# https://anonscm.debian.org/cgit/collab-maint/pkg-util-linux.git/commit/?id=04f7020eadf31efc731558df92daa0a1c336c46c
|
||
- 'not (item.key == "btrfs" and (ansible_distribution == "Ubuntu" and ansible_distribution_release == "trusty"))'
|
||
- 'not (item.key == "f2fs" and ansible_system == "FreeBSD")'
|
||
# f2fs-tools package not available with RHEL/CentOS
|
||
- 'not (item.key == "f2fs" and ansible_distribution in ["CentOS", "RedHat"])'
|
||
# On Ubuntu trusty, blkid (2.20.1) is unable to identify F2FS filesystem. blkid handles F2FS since v2.23, see:
|
||
# https://mirrors.edge.kernel.org/pub/linux/utils/util-linux/v2.23/v2.23-ReleaseNotes
|
||
- 'not (item.key == "f2fs" and ansible_distribution == "Ubuntu" and ansible_distribution_version is version("14.04", "<="))'
|
||
loop: "{{ lookup('dict', tested_filesystems) }}"
|