ceph-common: remove absolute path to handler include files

This breaks if the roles don't live in the same place as the playbook.

See: https://github.com/ceph/ceph-ansible/issues/1265

Signed-off-by: Andrew Schoen <aschoen@redhat.com>
(cherry picked from commit 873c044c53)
pull/1268/head
Andrew Schoen 2017-02-01 09:20:45 -06:00
parent 47d0be6513
commit 8ed7cdc57d
1 changed files with 4 additions and 4 deletions

View File

@ -5,16 +5,16 @@
when: ansible_os_family == 'Debian'
- name: restart ceph mons
include: "{{ playbook_dir }}/roles/ceph-common/handlers/restart-mon.yml"
include: "./restart-mon.yml"
- name: restart ceph osds
include: "{{ playbook_dir }}/roles/ceph-common/handlers/restart-osd.yml"
include: "./restart-osd.yml"
- name: restart ceph mdss
include: "{{ playbook_dir }}/roles/ceph-common/handlers/restart-mds.yml"
include: "./restart-mds.yml"
- name: restart ceph rgws
include: "{{ playbook_dir }}/roles/ceph-common/handlers/restart-rgw.yml"
include: "./restart-rgw.yml"
- name: restart ceph nfss
service: