summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/user-creation
diff options
context:
space:
mode:
authorAdrian Dudau <adrian.dudau@enea.com>2014-06-26 14:36:22 +0200
committerAdrian Dudau <adrian.dudau@enea.com>2014-06-26 15:32:53 +0200
commitf4cf9fe05bb3f32fabea4e54dd92d368967a80da (patch)
tree487180fa9866985ea7b28e625651765d86f515c3 /meta/recipes-support/user-creation
downloadpoky-f4cf9fe05bb3f32fabea4e54dd92d368967a80da.tar.gz
initial commit for Enea Linux 4.0
Migrated from the internal git server on the daisy-enea branch Signed-off-by: Adrian Dudau <adrian.dudau@enea.com>
Diffstat (limited to 'meta/recipes-support/user-creation')
-rw-r--r--meta/recipes-support/user-creation/xuser-account_0.1.bb27
1 files changed, 27 insertions, 0 deletions
diff --git a/meta/recipes-support/user-creation/xuser-account_0.1.bb b/meta/recipes-support/user-creation/xuser-account_0.1.bb
new file mode 100644
index 0000000000..77ba97dbf1
--- /dev/null
+++ b/meta/recipes-support/user-creation/xuser-account_0.1.bb
@@ -0,0 +1,27 @@
1SUMMARY = "Creates an 'xuser' account used for running X11"
2LICENSE = "MIT"
3LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
4
5SRC_URI = ""
6
7inherit allarch useradd
8
9do_configure() {
10 :
11}
12
13do_compile() {
14 :
15}
16
17do_install() {
18 :
19}
20
21USERADD_PACKAGES = "${PN}"
22GROUPADD_PARAM_${PN} = "--system shutdown"
23USERADD_PARAM_${PN} = "--create-home \
24 --groups video,tty,audio,input,shutdown,disk \
25 --user-group xuser"
26
27ALLOW_EMPTY_${PN} = "1"