diff options
| -rw-r--r-- | roles/docker/tasks/systemcontainer_docker.yml | 6 | 
1 files changed, 6 insertions, 0 deletions
| diff --git a/roles/docker/tasks/systemcontainer_docker.yml b/roles/docker/tasks/systemcontainer_docker.yml index 650f06f86..1da8966d8 100644 --- a/roles/docker/tasks/systemcontainer_docker.yml +++ b/roles/docker/tasks/systemcontainer_docker.yml @@ -12,6 +12,12 @@        traditional docker package install. Otherwise, comment out openshift_docker_options        in your inventory file. +- name: Ensure container-selinux is installed +  package: +    name: container-selinux +    state: present +  when: not openshift.common.is_atomic | bool +  # Used to pull and install the system container  - name: Ensure atomic is installed    package: | 
