blob: 67c22469726a55047c351534a0680194d703be63 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
SUMMARY = "Banner quadlet"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://${UNPACKDIR}/LICENSE;md5=a0e6886d263a557228f8d3c5bef21837"
SRC_URI = "\
file://banner.container \
file://LICENSE \
"
RDEPENDS:${PN}:append = " podman"
RDEPENDS:${PN}:append = " add-user-svc"
S = "${UNPACKDIR}"
ROOTLESS_USER_NAME ?= "svc"
do_install() {
install -D -m 0644 ${UNPACKDIR}/banner.container ${D}/home/${ROOTLESS_USER_NAME}/.config/containers/systemd/banner.container
}
FILES:${PN} = "\
/home/${ROOTLESS_USER_NAME}/.config/containers/systemd/banner.container \
"
|