From 5e5a66e80e326ceabef5702c317bc557b758a128 Mon Sep 17 00:00:00 2001 From: Saul Wold Date: Wed, 14 Nov 2012 14:21:02 -0800 Subject: builder: Add password for user This is needed to allow openssh to work correctly for the Eclipse plugin to have access to the build appliance to view/modify recipes and lauch builds Default password is "builder" Signed-off-by: Saul Wold Signed-off-by: Richard Purdie --- meta/recipes-graphics/builder/builder_0.1.bb | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/meta/recipes-graphics/builder/builder_0.1.bb b/meta/recipes-graphics/builder/builder_0.1.bb index 5c12c14873..41871d6f1b 100644 --- a/meta/recipes-graphics/builder/builder_0.1.bb +++ b/meta/recipes-graphics/builder/builder_0.1.bb @@ -1,7 +1,7 @@ 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 = "r4" +PR = "r5" LICENSE = "MIT" LIC_FILES_CHKSUM = "file://builder_hob_start.sh;endline=5;md5=84796c3c41785d86100fdabcbdade00e" @@ -15,10 +15,13 @@ 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 \ - --user-group ${PN}" + --user-group ${PN} \ + --password ${BUILDER_PASSWORD}" do_install () { install -d -m 755 ${D}${sysconfdir}/mini_x/session.d -- cgit 1.2.3-korg