blob: a7575a4ac55a9f0b3ba966986caf431af52a2db1 (
plain)
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
|
DESCRIPTION = "Creates an 'xuser' account"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
SRC_URI = ""
inherit allarch useradd
do_configure() {
:
}
do_compile() {
:
}
do_install() {
:
}
USERADD_PACKAGES = "${PN}"
GROUPADD_PARAM_${PN} = "--system shutdown"
USERADD_PARAM_${PN} = "--create-home \
--groups video,tty,audio,input,shutdown \
--user-group xuser"
ALLOW_EMPTY_${PN} = "1"
|