63b6601bdd
- 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>
17 lines
415 B
Plaintext
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
|
|
}
|