blob: d58d901313e6d4341edd5f1e69f6b4cc04505a3f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
SUMMARY = "SELinux packages for container guest"
DESCRIPTION = "SELinux packages required for AGL"
LICENSE = "MIT"
inherit packagegroup features_check
REQUIRED_DISTRO_FEATURES = "selinux"
PACKAGES = " \
packagegroup-agl-core-selinux-guest \
"
# The packagegroup-agl-core-selinux is including auditd.
# But it shall run in host, shall not run in guest.
# This package group remove from host only package from packagegroup-agl-core-selinux
RDEPENDS:${PN} = " \
coreutils \
libsepol \
libselinux \
libselinux-bin \
libsemanage \
refpolicy \
"
|