mirror of
git://git.yoctoproject.org/meta-selinux
synced 2026-01-01 13:58:04 +00:00
ChangeLog: https://github.com/SELinuxProject/selinux/releases/tag/3.8 * libsemanage: Preserve file context and ownership in policy store * libselinux: deprecate security_disable(3) * libsepol: Support nlmsg extended permissions * libsepol: Add policy capability netlink_xperm * libsemanage: Optionally allow duplicate declarations * policycoreutils: introduce unsetfiles * libselinux/utils: introduce selabel_compare * improved selabel_lookup performance * libselinux: support parallel usage of selabel_lookup(3) * libsepol: add support for xperms in conditional policies * Improved man pages * Code improvements and bug fixes * Always build for LFS mode on 32-bit archs. * libsemanage: Mute error messages from selinux_restorecon introduced in 3.8-rc1 * Regex spec ordering is restored to pre 3.8-rc1 * Binary fcontext files format changed, files using old format are ignored * Code improvements and bug fixes License-Update: White space cleanup for libsemanage/LICENSE Signed-off-by: Yi Zhao <yi.zhao@windriver.com> Signed-off-by: Joe MacDonald <joe.macdonald@siemens.com>
38 lines
1.2 KiB
BlitzBasic
38 lines
1.2 KiB
BlitzBasic
SUMMARY = "Daemon to watch for file creation and set default file context"
|
|
DESCRIPTION = "\
|
|
The restorecond daemon uses inotify to watch files listed in the \
|
|
/etc/selinux/restorecond.conf, when they are created, this daemon \
|
|
will make sure they have the correct file context associated with \
|
|
the policy."
|
|
SECTION = "base"
|
|
LICENSE = "GPL-2.0-or-later"
|
|
LIC_FILES_CHKSUM = "file://${S}/LICENSE;md5=393a5ca445f6965873eca0259a17f833"
|
|
|
|
require selinux_common.inc
|
|
|
|
inherit pkgconfig systemd update-rc.d
|
|
|
|
DEPENDS = "libsepol libselinux glib-2.0"
|
|
|
|
EXTRA_OEMAKE = "SYSTEMDSYSTEMUNITDIR=${systemd_system_unitdir} \
|
|
SYSTEMDUSERUNITDIR=${systemd_user_unitdir} \
|
|
"
|
|
|
|
S = "${WORKDIR}/git/restorecond"
|
|
|
|
FILES:${PN} += "${datadir}/dbus-1/services/org.selinux.Restorecond.service \
|
|
${systemd_user_unitdir}/* \
|
|
"
|
|
|
|
SYSTEMD_SERVICE:restorecond = "restorecond.service"
|
|
INITSCRIPT_PACKAGES = "restorecond"
|
|
INITSCRIPT_NAME:restorecond = "restorecond"
|
|
INITSCRIPT_PARAMS:restorecond = "defaults"
|
|
|
|
do_install:append() {
|
|
if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'false', 'true', d)}; then
|
|
# remove /usr/lib/systemd/user
|
|
rm -rf ${D}${nonarch_libdir}
|
|
fi
|
|
}
|