]> code.ossystems Code Review - openembedded-core.git/commitdiff
shadow-utils-native: remove unnecessary alternatives
authorMark Hatle <mark.hatle@windriver.com>
Mon, 21 May 2012 21:18:41 +0000 (16:18 -0500)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Wed, 30 May 2012 09:45:33 +0000 (10:45 +0100)
Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
meta/recipes-extended/shadow/shadow-native_4.1.4.3.bb

index 61fccbac267b342bb47b8652823e89f5cbfe07ab..fece9c6f501273a3869263575a44a3f7973398c4 100644 (file)
@@ -45,25 +45,4 @@ do_install_append() {
        # Now we don't have a mail system. Disable mail creation for now.
        sed -i 's:/bin/bash:/bin/sh:g' ${D}${sysconfdir}/default/useradd
        sed -i '/^CREATE_MAIL_SPOOL/ s:^:#:' ${D}${sysconfdir}/default/useradd
-
-       install -d ${D}${sbindir} ${D}${base_sbindir} ${D}${base_bindir} 
-       for i in passwd chfn newgrp chsh ; do
-               mv ${D}${bindir}/$i ${D}${bindir}/$i.${PN}
-       done
-
-       mv ${D}${sbindir}/chpasswd ${D}${sbindir}/chpasswd.${PN}
-}
-
-pkg_postinst_${PN} () {
-       update-alternatives --install ${bindir}/passwd passwd passwd.${PN} 200
-       update-alternatives --install ${sbindir}/chpasswd chpasswd chpasswd.${PN} 200
-       update-alternatives --install ${bindir}/chfn chfn chfn.${PN} 200
-       update-alternatives --install ${bindir}/newgrp newgrp newgrp.${PN} 200
-       update-alternatives --install ${bindir}/chsh chsh chsh.${PN} 200
-}
-
-pkg_prerm_${PN} () {
-       for i in passwd chpasswd chfn newgrp chsh ; do
-               update-alternatives --remove $i $i.${PN}
-       done
 }