From c959d8d3c99026799da793c36dbb9085fbde76d7 Mon Sep 17 00:00:00 2001 From: tigro Date: Wed, 12 Jul 2023 15:43:26 +0300 Subject: [PATCH] added filter_packages config file --- msvsphere-9.conf | 1 + msvsphere/filter_packages.conf | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+) create mode 100644 msvsphere/filter_packages.conf diff --git a/msvsphere-9.conf b/msvsphere-9.conf index bbd82fa..4426b07 100644 --- a/msvsphere-9.conf +++ b/msvsphere-9.conf @@ -8,6 +8,7 @@ from msvsphere/general import * from msvsphere/multilib import * from msvsphere/additional_packages import * +from msvsphere/filter_packages import * # product information release_name = 'MSVSphere' diff --git a/msvsphere/filter_packages.conf b/msvsphere/filter_packages.conf new file mode 100644 index 0000000..5e5f67c --- /dev/null +++ b/msvsphere/filter_packages.conf @@ -0,0 +1,18 @@ +filter_packages = [ + ( + '^BaseOS$', { + '*': [ + "checkpolicy", + "libverto-libevent", + "policycoreutils-python-utils", + "python3-audit", + "python3-distro", + "python3-libselinux", + "python3-libsemanage", + "python3-policycoreutils", + "selinux-policy-minimum", + "systemd-standalone-tmpfiles" + ] + } + ) +]