Browse Source

Unmask Docker service in ClearLinux (#4583)

The docker service provided by the containers-basic bundle is masked
in ClearLinux distribution. This is causing errors in the following
steps. This commit ensures that the unit is not masked.
pull/4602/head
Victor Morales 6 years ago
committed by Kubernetes Prow Robot
parent
commit
ada5941a70
1 changed files with 1 additions and 0 deletions
  1. 1
      roles/bootstrap-os/tasks/bootstrap-clearlinux.yml

1
roles/bootstrap-os/tasks/bootstrap-clearlinux.yml

@ -9,6 +9,7 @@
- name: Make sure docker service is enabled
systemd:
name: docker
masked: no
enabled: yes
daemon_reload: yes
state: started

Loading…
Cancel
Save