Skip to content
Snippets Groups Projects
Verified Commit f604d813 authored by Andrei Gherzan's avatar Andrei Gherzan :penguin:
Browse files

epiphany-app: Fix systemd service configuration


The app is directly in WORKDIR without a prefix.

Signed-off-by: Andrei Gherzan's avatarAndrei Gherzan <andrei.gherzan@huawei.com>
parent c3781568
No related branches found
No related tags found
No related merge requests found
......@@ -32,9 +32,9 @@ do_install() {
# The systemd service override is optional and app specific (for example it
# can add dependencies for a local HTTP service).
if [ -f "${WORKDIR}/epiphany-${EPIPHANY_APP}/service-override.conf" ]; then
if [ -f "${WORKDIR}/${EPIPHANY_APP}/service-override.conf" ]; then
mkdir -p "${D}${sysconfdir}/systemd/system/epiphany-app@${EPIPHANY_APP}.service.d"
cp "${WORKDIR}/epiphany-${EPIPHANY_APP}/service-override.conf" \
cp "${WORKDIR}/${EPIPHANY_APP}/service-override.conf" \
"${D}${sysconfdir}/systemd/system/epiphany-app@${EPIPHANY_APP}.service.d"
fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment