ceph-ansible/roles/ceph-restapi/tasks/start_restapi.yml

15 lines
336 B
YAML

---
- name: check if ceph rest api is already started
shell: "pgrep -f ceph-rest-api"
changed_when: false
failed_when: false
register: restapi_status
tags:
- always
- name: start ceph rest api
shell: "nohup ceph-rest-api --conf /etc/ceph/{{ cluster }}.conf &"
changed_when: false
when:
- restapi_status.rc != 0