mirror of
https://git.yoctoproject.org/poky
synced 2026-03-11 17:59:39 +01:00
libpam: split /etc/environment into pam-plugin-env package
Since systemd-v255, pam-plugin-umask is pulled in by by the logind package config for systemd. This causes /etc/environment to be installed as part of libpam-runtime. In our case, this broke do_rootfs for our image, because /etc/environment is already provided by another (custom) recipe. Fix this by making the /etc/environment file part of the pam-plugin-env package, which isn't automatically pulled in by systemd-logind. It also happens to be the where it should be, as the file is installed as part of the pam_env plugin. (From OE-Core rev: 778fcc8d2e6eb1bd2c88a6abb14dbd6666720205) Signed-off-by: Martin Hundebøll <martin@geanix.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
e2c364a642
commit
ea96025188
@@ -57,6 +57,11 @@ FILES:${PN}-dev += "${base_libdir}/security/*.la ${base_libdir}/*.la ${base_libd
|
||||
FILES:${PN}-runtime = "${sysconfdir} ${sbindir} ${systemd_system_unitdir}"
|
||||
FILES:${PN}-xtests = "${datadir}/Linux-PAM/xtests"
|
||||
|
||||
# libpam installs /etc/environment for use with the pam_env plugin. Make sure it is
|
||||
# packaged with the pam-plugin-env package to avoid breaking installations which
|
||||
# install that file via other packages
|
||||
FILES:pam-plugin-env = "${sysconfdir}/environment"
|
||||
|
||||
PACKAGES_DYNAMIC += "^${MLPREFIX}pam-plugin-.*"
|
||||
|
||||
def get_multilib_bit(d):
|
||||
@@ -113,7 +118,7 @@ python populate_packages:prepend () {
|
||||
pam_pkgname = mlprefix + 'pam-plugin%s'
|
||||
|
||||
do_split_packages(d, pam_libdir, r'^pam(.*)\.so$', pam_pkgname,
|
||||
'PAM plugin for %s', hook=pam_plugin_hook, extra_depends='')
|
||||
'PAM plugin for %s', hook=pam_plugin_hook, extra_depends='', prepend=True)
|
||||
do_split_packages(d, pam_filterdir, r'^(.*)$', 'pam-filter-%s', 'PAM filter for %s', extra_depends='')
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user