mirror of
https://git.yoctoproject.org/poky
synced 2026-05-30 00:20:08 +00:00
screen: dynamically add or remove a entry to/from /etc/shells
1 Add base-files to RDEPENDS. 2 Add pkg_postinst and pkg_postrm to add and remove a entry in /etc/shells. (From OE-Core rev: 95618d6d5c4f8e5f0aec632d35e02ad5a33a1f75) Signed-off-by: Ming Liu <ming.liu@windriver.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -12,6 +12,8 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=0774d66808b0f602e94448108f59448b \
|
|||||||
SECTION = "console/utils"
|
SECTION = "console/utils"
|
||||||
DEPENDS = "ncurses \
|
DEPENDS = "ncurses \
|
||||||
${@base_contains('DISTRO_FEATURES', 'pam', 'libpam', '', d)}"
|
${@base_contains('DISTRO_FEATURES', 'pam', 'libpam', '', d)}"
|
||||||
|
RDEPENDS_${PN} = "base-files"
|
||||||
|
|
||||||
PR = "r3"
|
PR = "r3"
|
||||||
|
|
||||||
SRC_URI = "${GNU_MIRROR}/screen/screen-${PV}.tar.gz;name=tarball \
|
SRC_URI = "${GNU_MIRROR}/screen/screen-${PV}.tar.gz;name=tarball \
|
||||||
@@ -41,3 +43,11 @@ do_install_append () {
|
|||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pkg_postinst_${PN} () {
|
||||||
|
grep -q "^${bindir}/screen$" $D${sysconfdir}/shells || echo ${bindir}/screen >> $D${sysconfdir}/shells
|
||||||
|
}
|
||||||
|
|
||||||
|
pkg_postrm_${PN} () {
|
||||||
|
printf "$(grep -v "^${bindir}/screen$" $D${sysconfdir}/shells)\n" > $D${sysconfdir}/shells
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user