blob: be73d18be9d4f0ef5856152052450574623b0f08 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
---
- block:
- name: create the docker-storage config file
template:
src: docker-storage-setup-overlayfs.j2
dest: /etc/sysconfig/docker-storage-setup
owner: root
group: root
mode: 0644
when:
- ansible_distribution_version is version_compare('7.4', '>=')
- ansible_distribution == "RedHat"
- block:
- name: create the docker-storage-setup config file
template:
src: docker-storage-setup-dm.j2
dest: /etc/sysconfig/docker-storage-setup
owner: root
group: root
mode: 0644
when:
- ansible_distribution_version is version_compare('7.4', '<')
- ansible_distribution == "RedHat"
- block:
- name: create the docker-storage-setup config file for CentOS
template:
src: docker-storage-setup-dm.j2
dest: /etc/sysconfig/docker-storage-setup
owner: root
group: root
mode: 0644
# TODO(shadower): Find out which CentOS version supports overlayfs2
when:
- ansible_distribution == "CentOS"
|