Fixup cri-o metacopy mount options (#7287)
Ubuntu 18.04 crio package ships with 'mountopt = "nodev,metacopy=on"' even if GA kernel is 4.15 (HWE Kernel can be more recent) Fedora package ships without metacopy=on Signed-off-by: Etienne Champetier <e.champetier@ateme.com>
This commit is contained in:
parent
17143dbc51
commit
5c04bdd52b
1 changed files with 3 additions and 5 deletions
|
@ -140,15 +140,13 @@
|
|||
owner: root
|
||||
mode: 0755
|
||||
|
||||
- name: Remove metacopy mount options for older kernels
|
||||
# metacopy=on is available since 4.19 and was backported to RHEL 4.18 kernel
|
||||
- name: Set metacopy mount options correctly
|
||||
ini_file:
|
||||
dest: /etc/containers/storage.conf
|
||||
section: storage.options.overlay
|
||||
option: mountopt
|
||||
value: "\"nodev\""
|
||||
when:
|
||||
- ansible_distribution == "CentOS"
|
||||
- ansible_distribution_major_version == "7"
|
||||
value: '{{ ''"nodev"'' if ansible_kernel is version_compare(("4.18" if ansible_os_family == "RedHat" else "4.19"), "<") else ''"nodev,metacopy=on"'' }}'
|
||||
|
||||
- name: Create directory registries configs
|
||||
file:
|
||||
|
|
Loading…
Reference in a new issue