blob: dd06028300bbcf56f5f3f7fa278a8be5450e65e2 (
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
25
26
|
SUMMARY = "SELinux packages for container guest"
DESCRIPTION = "SELinux packages required for AGL"
LICENSE = "MIT"
inherit features_check
REQUIRED_DISTRO_FEATURES = "selinux"
PACKAGES = " \
packagegroup-agl-core-selinux-guest \
"
ALLOW_EMPTY:${PN} = "1"
# 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 \
"
|