meta-starlingx/meta-stx-virt/recipes-connectivity/etcd/etcd_git.bbappend
Babak Sarashki 63b6601bdd meta-stx: update LICENSE and copyright info
- Change License from Apache2 to MIT.
- Remove Copyright from individual recipes
- Move License to README.md
- Add meta-stx Copyright to README.md

Signed-off-by: Babak Sarashki <Babak.SarAshki@windriver.com>
2020-06-08 13:00:26 -07:00

17 lines
415 B
Plaintext

FILESEXTRAPATHS_prepend := "${THISDIR}/files:"
SRC_URI += " \
file://etcd.service \
file://etcd.conf \
"
SYSTEMD_PACKAGES = "${PN}"
SYSTEMD_SERVICE_${PN} = "etcd.service"
SYSTEMD_AUTO_ENABLE_${PN} = "disable"
do_install_append() {
install -m 0644 ${WORKDIR}/etcd.service ${D}${systemd_system_unitdir}
install -d ${D}${sysconfdir}/etcd
install -m 0644 ${WORKDIR}/etcd.conf ${D}${sysconfdir}/etcd
}