diff options
| author | Otavio Salvador <otavio@ossystems.com.br> | 2011-10-21 13:55:53 +0000 |
|---|---|---|
| committer | Koen Kooi <koen@dominion.thruhere.net> | 2011-10-24 16:23:42 +0200 |
| commit | 48e381fcb09f2c91318e53f9256f4f702a046b9a (patch) | |
| tree | b41e55f37eda7c5f5fc3c86480e1aa44332c6c77 /meta-oe/recipes-core/systemd | |
| parent | 7a364f8abc8090f662c7dccc21a7f389e54369f3 (diff) | |
| download | meta-openembedded-48e381fcb09f2c91318e53f9256f4f702a046b9a.tar.gz | |
systemd: add lock group using useradd.bbclass
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Diffstat (limited to 'meta-oe/recipes-core/systemd')
| -rw-r--r-- | 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 c5503e8409..4d314f85ee 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 | |||
| 14 | PKGV = "v${GITPKGVTAG}" | 14 | PKGV = "v${GITPKGVTAG}" |
| 15 | 15 | ||
| 16 | PV = "git" | 16 | PV = "git" |
| 17 | PR = "r2" | 17 | PR = "r3" |
| 18 | 18 | ||
| 19 | inherit pkgconfig autotools vala perlnative | 19 | inherit useradd pkgconfig autotools vala perlnative |
| 20 | 20 | ||
| 21 | SRCREV = "64685e0cea62b4937f0804e47ce2cb7929f58223" | 21 | SRCREV = "64685e0cea62b4937f0804e47ce2cb7929f58223" |
| 22 | 22 | ||
| @@ -59,6 +59,9 @@ do_install() { | |||
| 59 | 59 | ||
| 60 | PACKAGES =+ "${PN}-gui ${PN}-vconsole-setup ${PN}-initramfs" | 60 | PACKAGES =+ "${PN}-gui ${PN}-vconsole-setup ${PN}-initramfs" |
| 61 | 61 | ||
| 62 | USERADD_PACKAGES = "${PN}" | ||
| 63 | GROUPADD_PARAM_${PN} = "-r lock" | ||
| 64 | |||
| 62 | FILES_${PN}-initramfs = "/init" | 65 | FILES_${PN}-initramfs = "/init" |
| 63 | RDEPENDS_${PN}-initramfs = "${PN}" | 66 | RDEPENDS_${PN}-initramfs = "${PN}" |
| 64 | 67 | ||
| @@ -113,12 +116,4 @@ update-alternatives --install ${base_sbindir}/halt halt ${base_bindir}/systemctl | |||
| 113 | update-alternatives --install ${base_sbindir}/reboot reboot ${base_bindir}/systemctl 300 | 116 | update-alternatives --install ${base_sbindir}/reboot reboot ${base_bindir}/systemctl 300 |
| 114 | update-alternatives --install ${base_sbindir}/shutdown shutdown ${base_bindir}/systemctl 300 | 117 | update-alternatives --install ${base_sbindir}/shutdown shutdown ${base_bindir}/systemctl 300 |
| 115 | update-alternatives --install ${base_sbindir}/poweroff poweroff ${base_bindir}/systemctl 300 | 118 | update-alternatives --install ${base_sbindir}/poweroff poweroff ${base_bindir}/systemctl 300 |
| 116 | |||
| 117 | # can't do this offline, but we need the u-a bits above | ||
| 118 | if [ "x$D" != "x" ]; then | ||
| 119 | echo "can't do addgroup offline" ; exit 1 | ||
| 120 | else | ||
| 121 | grep "^lock:" /etc/group > /dev/null || addgroup lock | ||
| 122 | fi | ||
| 123 | } | 119 | } |
| 124 | |||
