Ansible: Do not fail flannel restart is docker not installed

On first install flannel runs before docker is installed. So do not fail
if docker is not installed
This commit is contained in:
Eric Paris 2015-07-13 15:28:13 -04:00
parent 8b57cc8918
commit 165aa56c1a

View File

@ -16,3 +16,5 @@
- name: start docker
service: name=docker state=started
# This might fail if docker isn't installed yet
ignore_errors: yes