mirror of https://github.com/ceph/ceph-ansible.git
docker: fail if systemd is not present
Since we treat containers as services using systemd, systemd is an absolute requirement. Signed-off-by: Sébastien Han <seb@redhat.com>pull/1278/head
parent
0d4cd0db7e
commit
88a2b2de8c
|
@ -0,0 +1,2 @@
|
|||
---
|
||||
- include: system_checks.yml
|
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
- name: fail if systemd is not present
|
||||
fail:
|
||||
msg: "Systemd must be present"
|
||||
when: ansible_service_mgr != 'systemd'
|
Loading…
Reference in New Issue