From ada5941a70c53126869991ef4f29d99af5abe8fc Mon Sep 17 00:00:00 2001 From: Victor Morales Date: Sun, 21 Apr 2019 07:31:43 -0700 Subject: [PATCH] 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. --- roles/bootstrap-os/tasks/bootstrap-clearlinux.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/roles/bootstrap-os/tasks/bootstrap-clearlinux.yml b/roles/bootstrap-os/tasks/bootstrap-clearlinux.yml index 1144893a6..a43ee9ad3 100644 --- a/roles/bootstrap-os/tasks/bootstrap-clearlinux.yml +++ b/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