diff options
author | Jackie Huang <jackie.huang@windriver.com> | 2015-01-12 11:25:28 +0800 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2015-01-15 16:37:56 +0100 |
commit | 2fbc57e10562a809e20a7be93c76d9f08a88ea5f (patch) | |
tree | 1fa094dbcd71dc74f94b88ded8d939d56e531fe4 /meta-perl/recipes-perl/adduser/adduser_3.113+nmu3.bb | |
parent | 8c17bb27c5b1ca72fc28457ff8b056c8fbdcc6f7 (diff) | |
download | meta-openembedded-2fbc57e10562a809e20a7be93c76d9f08a88ea5f.tar.gz |
adduser: add new recipe
This is a utility from debain to add users/groups to the system,
which is actually a perl wrapper of the useradd/groupadd command.
We want this to replace the same commands provided by busybox.
Homepage: https://alioth.debian.org/projects/adduser
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-perl/recipes-perl/adduser/adduser_3.113+nmu3.bb')
-rw-r--r-- | meta-perl/recipes-perl/adduser/adduser_3.113+nmu3.bb | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/meta-perl/recipes-perl/adduser/adduser_3.113+nmu3.bb b/meta-perl/recipes-perl/adduser/adduser_3.113+nmu3.bb new file mode 100644 index 0000000000..969a739d49 --- /dev/null +++ b/meta-perl/recipes-perl/adduser/adduser_3.113+nmu3.bb | |||
@@ -0,0 +1,53 @@ | |||
1 | SUMMARY = "a utility to add users/groups to the system" | ||
2 | DESCRIPTION = "adduser, addgroup - add a user or group to the system" | ||
3 | HOMEPAGE = "http://alioth.debian.org/projects/adduser/" | ||
4 | SECTION = "base/utils" | ||
5 | |||
6 | LICENSE = "GPLv2" | ||
7 | LIC_FILES_CHKSUM = "file://debian/copyright;md5=caed49ab166f22ef31bf1127f558d0ef" | ||
8 | |||
9 | SRC_URI = "http://ftp.de.debian.org/debian/pool/main/a/${BPN}/${BPN}_${PV}.tar.gz \ | ||
10 | file://adduser-add-M-option-for-useradd-when-no-create-home.patch \ | ||
11 | " | ||
12 | |||
13 | SRC_URI[md5sum] = "ccb5864bde56683182c89c44474e7182" | ||
14 | SRC_URI[sha256sum] = "02682be3f51f3e732121f20a3e4922bb8bef15cfacb8767fc250a01d09502122" | ||
15 | |||
16 | inherit cpan-base update-alternatives | ||
17 | |||
18 | do_install() { | ||
19 | install -d ${D}${sbindir} | ||
20 | install -m 0755 ${S}/adduser ${D}${sbindir} | ||
21 | install -m 0755 ${S}/deluser ${D}${sbindir} | ||
22 | |||
23 | install -d ${D}${libdir}/perl/${PERLVERSION}/Debian | ||
24 | install -m 0644 ${S}/AdduserCommon.pm ${D}${libdir}/perl/${PERLVERSION}/Debian | ||
25 | sed -i -e "s/VERSION/${PV}/" ${D}${sbindir}/* | ||
26 | |||
27 | install -d ${D}/${sysconfdir} | ||
28 | install -m 0644 ${S}/*.conf ${D}/${sysconfdir} | ||
29 | |||
30 | install -d ${D}${mandir}/man5 | ||
31 | install -m 0644 ${S}/doc/*.conf.5 ${D}${mandir}/man5 | ||
32 | install -d ${D}${mandir}/man8 | ||
33 | install -m 0644 ${S}/doc/*.8 ${D}${mandir}/man8 | ||
34 | install -d ${D}${docdir}/${BPN} | ||
35 | cp -rf ${S}/examples ${D}${docdir}/${BPN} | ||
36 | } | ||
37 | |||
38 | RDEPENDS_${PN} += "\ | ||
39 | shadow \ | ||
40 | perl-module-getopt-long \ | ||
41 | perl-module-overloading \ | ||
42 | perl-module-file-find \ | ||
43 | perl-module-file-temp \ | ||
44 | " | ||
45 | |||
46 | ALTERNATIVE_${PN} = "adduser deluser addgroup delgroup" | ||
47 | ALTERNATIVE_PRIORITY = "60" | ||
48 | ALTERNATIVE_LINK_NAME[adduser] = "${sbindir}/adduser" | ||
49 | ALTERNATIVE_LINK_NAME[deluser] = "${sbindir}/deluser" | ||
50 | ALTERNATIVE_LINK_NAME[addgroup] = "${sbindir}/addgroup" | ||
51 | ALTERNATIVE_LINK_NAME[delgroup] = "${sbindir}/delgroup" | ||
52 | ALTERNATIVE_TARGET[addgroup] = "${sbindir}/adduser.${BPN}" | ||
53 | ALTERNATIVE_TARGET[delgroup] = "${sbindir}/deluser.${BPN}" | ||