summaryrefslogtreecommitdiffstats
path: root/meta-openstack/recipes-support/tgt/tgt_git.bb
diff options
context:
space:
mode:
authorMingli Yu <Mingli.Yu@windriver.com>2018-08-10 15:29:32 +0800
committerBruce Ashfield <bruce.ashfield@windriver.com>2018-08-14 13:03:42 -0400
commita0b99547acd3ab523af1638455e211e876b5c24d (patch)
treec04fd47c043bf8e6a490ca63c722057a6007e161 /meta-openstack/recipes-support/tgt/tgt_git.bb
parent5b963d1e391dd822a56678194ff914bbcac83012 (diff)
downloadmeta-cloud-services-a0b99547acd3ab523af1638455e211e876b5c24d.tar.gz
tgt: add systemd service file
Add systemd service file for tgt Signed-off-by: Mingli Yu <Mingli.Yu@windriver.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Diffstat (limited to 'meta-openstack/recipes-support/tgt/tgt_git.bb')
-rw-r--r--meta-openstack/recipes-support/tgt/tgt_git.bb22
1 files changed, 20 insertions, 2 deletions
diff --git a/meta-openstack/recipes-support/tgt/tgt_git.bb b/meta-openstack/recipes-support/tgt/tgt_git.bb
index f4e12da..b94b034 100644
--- a/meta-openstack/recipes-support/tgt/tgt_git.bb
+++ b/meta-openstack/recipes-support/tgt/tgt_git.bb
@@ -12,13 +12,19 @@ SRC_URI = "git://github.com/fujita/tgt.git \
12 file://0001-usr-Makefile-WARNING-fix.patch \ 12 file://0001-usr-Makefile-WARNING-fix.patch \
13 file://usr-Makefile-apply-LDFLAGS-to-all-executables.patch \ 13 file://usr-Makefile-apply-LDFLAGS-to-all-executables.patch \
14" 14"
15SRC_URI += "file://tgtd.init" 15SRC_URI += "file://tgtd.init \
16 file://tgtd.service \
17 file://tgtd \
18"
16 19
17S = "${WORKDIR}/git" 20S = "${WORKDIR}/git"
18 21
19CONFFILES_${PN} += "${sysconfdir}/tgt/targets.conf" 22CONFFILES_${PN} += "${sysconfdir}/tgt/targets.conf"
20 23
21inherit update-rc.d 24inherit update-rc.d systemd
25
26SYSTEMD_SERVICE_${PN} = "tgtd.service"
27SYSTEMD_AUTO_ENABLE_${PN} = "disable"
22 28
23CFLAGS += ' -I. -DUSE_SIGNALFD -DUSE_TIMERFD -D_GNU_SOURCE -DTGT_VERSION=\\"1.0.63\\" -DBSDIR=\\"${libdir}/backing-store\\"' 29CFLAGS += ' -I. -DUSE_SIGNALFD -DUSE_TIMERFD -D_GNU_SOURCE -DTGT_VERSION=\\"1.0.63\\" -DBSDIR=\\"${libdir}/backing-store\\"'
24 30
@@ -33,9 +39,21 @@ do_install() {
33 if ${@bb.utils.contains('DISTRO_FEATURES', 'sysvinit', 'true', 'false', d)}; then 39 if ${@bb.utils.contains('DISTRO_FEATURES', 'sysvinit', 'true', 'false', d)}; then
34 install -d ${D}${sysconfdir}/init.d 40 install -d ${D}${sysconfdir}/init.d
35 install -m 0755 ${WORKDIR}/tgtd.init ${D}${sysconfdir}/init.d/tgtd 41 install -m 0755 ${WORKDIR}/tgtd.init ${D}${sysconfdir}/init.d/tgtd
42 elif ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then
43 install -d ${D}${systemd_unitdir}/system
44 install -m 0644 ${WORKDIR}/tgtd.service ${D}${systemd_unitdir}/system/tgtd.service
45 install -d ${D}${sysconfdir}/sysconfig
46 install -m 0644 ${WORKDIR}/tgtd ${D}${sysconfdir}/sysconfig/tgtd
47 sed -i -e 's,@SBINDIR@,${sbindir},g' ${D}${systemd_unitdir}/system/tgtd.service
48 sed -i -e 's,@BASE_BINDIR@,${base_bindir},g' ${D}${systemd_unitdir}/system/tgtd.service
49 sed -i -e 's,@SYSCONFDIR@,${sysconfdir},g' ${D}${systemd_unitdir}/system/tgtd.service
36 fi 50 fi
37} 51}
38 52
53FILES_${PN} += "${systemd_unitdir}/system/tgtd.service \
54 ${sysconfdir}/sysconfig/tgtd \
55"
56
39RDEPENDS_${PN} = " \ 57RDEPENDS_${PN} = " \
40 bash \ 58 bash \
41 libaio \ 59 libaio \