diff options
author | Chen Qi <Qi.Chen@windriver.com> | 2019-08-29 14:41:37 +0800 |
---|---|---|
committer | Bruce Ashfield <bruce.ashfield@gmail.com> | 2019-08-30 00:28:36 -0400 |
commit | e87e6fdcbc0926f4c0bf14c52b87d055cc4dd8c9 (patch) | |
tree | 83f8c240c95cecd45bb804c0a53550abdd0d2007 | |
parent | a822d7630b720e2c0b4618db92ca929dcd23a77d (diff) | |
download | meta-virtualization-e87e6fdcbc0926f4c0bf14c52b87d055cc4dd8c9.tar.gz |
ceph: remove fuse related services as WITH_FUSE is OFF
We have WITH_FUSE to set to OFF. We should not install any ceph-fuse
units as they are using ceph-fuse.
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
-rw-r--r-- | recipes-extended/ceph/ceph_14.1.0.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/recipes-extended/ceph/ceph_14.1.0.bb b/recipes-extended/ceph/ceph_14.1.0.bb index 55a6d7d1..18a324a8 100644 --- a/recipes-extended/ceph/ceph_14.1.0.bb +++ b/recipes-extended/ceph/ceph_14.1.0.bb | |||
@@ -32,8 +32,6 @@ SYSTEMD_SERVICE_${PN} = " \ | |||
32 | ceph-osd@.service \ | 32 | ceph-osd@.service \ |
33 | ceph-osd.target \ | 33 | ceph-osd.target \ |
34 | ceph.target \ | 34 | ceph.target \ |
35 | ceph-fuse@.service \ | ||
36 | ceph-fuse.target \ | ||
37 | ceph-rbd-mirror@.service \ | 35 | ceph-rbd-mirror@.service \ |
38 | ceph-rbd-mirror.target \ | 36 | ceph-rbd-mirror.target \ |
39 | ceph-volume@.service \ | 37 | ceph-volume@.service \ |
@@ -77,6 +75,8 @@ do_install_append () { | |||
77 | mv ${D}${libexecdir}/systemd/system ${D}${systemd_unitdir} | 75 | mv ${D}${libexecdir}/systemd/system ${D}${systemd_unitdir} |
78 | mv ${D}${libexecdir}/ceph/ceph-osd-prestart.sh ${D}${libdir}/ceph | 76 | mv ${D}${libexecdir}/ceph/ceph-osd-prestart.sh ${D}${libdir}/ceph |
79 | mv ${D}${libexecdir}/ceph/ceph_common.sh ${D}${libdir}/ceph | 77 | mv ${D}${libexecdir}/ceph/ceph_common.sh ${D}${libdir}/ceph |
78 | # WITH_FUSE is set to OFF, remove ceph-fuse related units | ||
79 | rm ${D}${systemd_unitdir}/system/ceph-fuse.target ${D}${systemd_unitdir}/system/ceph-fuse@.service | ||
80 | } | 80 | } |
81 | 81 | ||
82 | FILES_${PN} += "\ | 82 | FILES_${PN} += "\ |