Browse Source
else condition required otherwise AnsibleUndefinedVariable is triggered (#5722)
pull/5517/head
Christopher Randles
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
3 deletions
-
roles/container-engine/docker/templates/docker.service.j2
|
|
@ -3,16 +3,16 @@ Description=Docker Application Container Engine |
|
|
|
Documentation=http://docs.docker.com |
|
|
|
{% if ansible_os_family == "RedHat" %} |
|
|
|
After=network.target {{ ' docker-storage-setup.service' if docker_container_storage_setup else '' }}{{ ' containerd.service' if installed_docker_version.stdout is version('18.09.1', '>=') else '' }} |
|
|
|
{{ 'BindsTo=containerd.service' if installed_docker_version.stdout is version('18.09.1', '>=') }} |
|
|
|
{{ 'BindsTo=containerd.service' if installed_docker_version.stdout is version('18.09.1', '>=') else '' }} |
|
|
|
{{ 'Wants=docker-storage-setup.service' if docker_container_storage_setup else '' }} |
|
|
|
{% elif ansible_os_family == "Debian" %} |
|
|
|
After=network.target docker.socket{{ ' containerd.service' if installed_docker_version.stdout is version('18.09.1', '>=') else '' }} |
|
|
|
{{ 'BindsTo=containerd.service' if installed_docker_version.stdout is version('18.09.1', '>=') }} |
|
|
|
{{ 'BindsTo=containerd.service' if installed_docker_version.stdout is version('18.09.1', '>=') else '' }} |
|
|
|
Wants=docker.socket |
|
|
|
{% elif ansible_os_family == "Suse" %} |
|
|
|
After=network.target lvm2-monitor.service SuSEfirewall2.service |
|
|
|
# After=network.target{{ ' containerd.service' if installed_docker_version.stdout is version('18.09.1', '>=') else '' }} |
|
|
|
# {{ 'BindsTo=containerd.service' if installed_docker_version.stdout is version('18.09.1', '>=') }} |
|
|
|
# {{ 'BindsTo=containerd.service' if installed_docker_version.stdout is version('18.09.1', '>=') else '' }} |
|
|
|
{% endif %} |
|
|
|
|
|
|
|
[Service] |
|
|
|