From patchwork Fri Oct 21 13:55:53 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [meta-oe,3/5] systemd: add lock group using useradd.bbclass Date: Fri, 21 Oct 2011 13:55:53 -0000 From: Otavio Salvador X-Patchwork-Id: 13715 Message-Id: <2388171720d37651846be1edf389c68144fd1898.1319205291.git.otavio@ossystems.com.br> To: openembedded-devel@lists.openembedded.org Signed-off-by: Otavio Salvador --- meta-oe/recipes-core/systemd/systemd_git.bb | 15 +++++---------- 1 files changed, 5 insertions(+), 10 deletions(-) diff --git a/meta-oe/recipes-core/systemd/systemd_git.bb b/meta-oe/recipes-core/systemd/systemd_git.bb index f9e024b..89ded56 100644 --- a/meta-oe/recipes-core/systemd/systemd_git.bb +++ b/meta-oe/recipes-core/systemd/systemd_git.bb @@ -14,9 +14,9 @@ inherit gitpkgv PKGV = "v${GITPKGVTAG}" PV = "git" -PR = "r1" +PR = "r2" -inherit pkgconfig autotools vala perlnative +inherit useradd pkgconfig autotools vala perlnative SRCREV = "64685e0cea62b4937f0804e47ce2cb7929f58223" @@ -59,6 +59,9 @@ do_install() { PACKAGES =+ "${PN}-gui ${PN}-vconsole-setup ${PN}-initramfs" +USERADD_PACKAGES = "${PN}" +GROUPADD_PARAM_${PN} = "-r lock" + FILES_${PN}-initramfs = "/init" RDEPENDS_${PN}-initramfs = "${PN}" @@ -113,12 +116,4 @@ update-alternatives --install ${base_sbindir}/halt halt ${base_bindir}/systemctl update-alternatives --install ${base_sbindir}/reboot reboot ${base_bindir}/systemctl 300 update-alternatives --install ${base_sbindir}/shutdown shutdown ${base_bindir}/systemctl 300 update-alternatives --install ${base_sbindir}/poweroff poweroff ${base_bindir}/systemctl 300 - -# can't do this offline, but we need the u-a bits above -if [ "x$D" != "x" ]; then - echo "can't do addgroup offline" ; exit 1 -else - grep "^lock:" /etc/group > /dev/null || addgroup lock -fi } -