hc
2023-12-06 d38611ca164021d018c1b23eee65bbebc09c63e0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
SUMMARY = "New user to do specific job"
DESCRIPTION = "This recipe create a new user named ${PN}, who is used for specific jobs like building. The task can be auto started via mini X"
SECTION = "x11"
PR = "r6"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://builder_session.sh;endline=5;md5=84796c3c41785d86100fdabcbdade00e"
 
SRC_URI = "file://builder_session.sh \
          "
 
S = "${WORKDIR}"
 
RDEPENDS:${PN} = "mini-x-session"
 
inherit useradd
 
# builder user password is "builder"
BUILDER_PASSWORD ?= ".gLibiNXn0P12"
USERADD_PACKAGES = "${PN}"
USERADD_PARAM:${PN} = "--system --create-home \
                       --groups video,tty,audio \
                       --password ${BUILDER_PASSWORD} \
                       --user-group builder"
 
do_install () {
   install -d -m 755 ${D}${sysconfdir}/mini_x/session.d
   install -p -m 755 builder_session.sh ${D}${sysconfdir}/mini_x/session.d/
 
   chown  builder.builder ${D}${sysconfdir}/mini_x/session.d/builder_session.sh
}
 
# -4178 is an unrelated 'builder'
CVE_CHECK_WHITELIST = "CVE-2008-4178"