All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-security][PATCH 1/3] packagegroups: add more packages
@ 2018-10-25  6:27 Armin Kuster
  2018-10-25  6:27 ` [meta-security][PATCH 2/3] packagegroup-core-security: add ptest capable packages Armin Kuster
  2018-10-25  6:27 ` [meta-security][PATCH 3/3] layer.con: add TESTSUITE define Armin Kuster
  0 siblings, 2 replies; 3+ messages in thread
From: Armin Kuster @ 2018-10-25  6:27 UTC (permalink / raw)
  To: yocto

Signed-off-by: Armin Kuster <akuster808@gmail.com>
---
 recipes-security/packagegroup/packagegroup-core-security.bb | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/recipes-security/packagegroup/packagegroup-core-security.bb b/recipes-security/packagegroup/packagegroup-core-security.bb
index 5317aee..718ea5a 100644
--- a/recipes-security/packagegroup/packagegroup-core-security.bb
+++ b/recipes-security/packagegroup/packagegroup-core-security.bb
@@ -28,6 +28,10 @@ RDEPENDS_packagegroup-security-utils = "\
     nmap \
     pinentry \
     python3-scapy \
+    ding-libs \
+    xmlsec1 \
+    keyutils \
+    libseccomp \
     ${@bb.utils.contains("DISTRO_FEATURES", "pax", "pax-utils", "",d)} \
     "
 
@@ -52,7 +56,7 @@ RDEPENDS_packagegroup-security-hardening = " \
 SUMMARY_packagegroup-security-ids = "Security Intrusion Detection systems"
 RDEPENDS_packagegroup-security-ids = " \
     tripwire \
-    samhain-client \
+    samhain-standalone \
     suricata \
     "
 
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [meta-security][PATCH 2/3] packagegroup-core-security: add ptest capable packages
  2018-10-25  6:27 [meta-security][PATCH 1/3] packagegroups: add more packages Armin Kuster
@ 2018-10-25  6:27 ` Armin Kuster
  2018-10-25  6:27 ` [meta-security][PATCH 3/3] layer.con: add TESTSUITE define Armin Kuster
  1 sibling, 0 replies; 3+ messages in thread
From: Armin Kuster @ 2018-10-25  6:27 UTC (permalink / raw)
  To: yocto

and favor python-scapy

Signed-off-by: Armin Kuster <akuster808@gmail.com>
---
 .../packagegroup/packagegroup-core-security.bb             | 14 +++++++++++++-
 1 file changed, 13 insertions(+), 1 deletion(-)

diff --git a/recipes-security/packagegroup/packagegroup-core-security.bb b/recipes-security/packagegroup/packagegroup-core-security.bb
index 718ea5a..653d87b 100644
--- a/recipes-security/packagegroup/packagegroup-core-security.bb
+++ b/recipes-security/packagegroup/packagegroup-core-security.bb
@@ -12,6 +12,7 @@ PACKAGES = "\
     packagegroup-security-ids  \
     packagegroup-security-mac  \
     ${@bb.utils.contains("MACHINE_FEATURES", "tpm", "packagegroup-security-tpm", "",d)} \
+    ${@bb.utils.contains("DISTRO_FEATURES", "ptest", "packagegroup-security-ptest", "", d)} \
     "
 
 RDEPENDS_packagegroup-core-security = "\
@@ -20,6 +21,7 @@ RDEPENDS_packagegroup-core-security = "\
     packagegroup-security-ids  \
     packagegroup-security-mac  \
     ${@bb.utils.contains("MACHINE_FEATURES", "tpm", "packagegroup-security-tpm", "",d)} \
+    ${@bb.utils.contains("DISTRO_FEATURES", "ptest", "packagegroup-security-ptest", "", d)} \
     "
 
 SUMMARY_packagegroup-security-utils = "Security utilities"
@@ -27,7 +29,7 @@ RDEPENDS_packagegroup-security-utils = "\
     checksec \
     nmap \
     pinentry \
-    python3-scapy \
+    python-scapy \
     ding-libs \
     xmlsec1 \
     keyutils \
@@ -66,3 +68,13 @@ RDEPENDS_packagegroup-security-mac = " \
     ${@bb.utils.contains("DISTRO_FEATURES", "apparmor", "", "",d)} \
     ${@bb.utils.contains("DISTRO_FEATURES", "smack", "smack", "",d)} \
     "
+
+SUMMARY_packagegroup-security-ptest = "Security packages with ptests"
+RDEPENDS_packagegroup-security-ptest = " \
+    samhain-standalone-ptest \
+    xmlsec1-ptest \
+    keyutils-ptest \
+    libseccomp-ptest \
+    python-scapy-ptest \
+    ptest-runner \
+    "
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [meta-security][PATCH 3/3] layer.con: add TESTSUITE define
  2018-10-25  6:27 [meta-security][PATCH 1/3] packagegroups: add more packages Armin Kuster
  2018-10-25  6:27 ` [meta-security][PATCH 2/3] packagegroup-core-security: add ptest capable packages Armin Kuster
@ 2018-10-25  6:27 ` Armin Kuster
  1 sibling, 0 replies; 3+ messages in thread
From: Armin Kuster @ 2018-10-25  6:27 UTC (permalink / raw)
  To: yocto

Signed-off-by: Armin Kuster <akuster808@gmail.com>
---
 conf/layer.conf | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/conf/layer.conf b/conf/layer.conf
index 675a149..76f5bd6 100644
--- a/conf/layer.conf
+++ b/conf/layer.conf
@@ -12,3 +12,5 @@ BBFILE_PRIORITY_security = "8"
 LAYERSERIES_COMPAT_security = "thud"
 
 LAYERDEPENDS_security = "core openembedded-layer perl-layer networking-layer meta-python"
+
+DEFAULT_TEST_SUITES_pn-security-build-image = " ${MINTESTSUITE} ssh scp ptest"
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2018-10-25  6:27 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-10-25  6:27 [meta-security][PATCH 1/3] packagegroups: add more packages Armin Kuster
2018-10-25  6:27 ` [meta-security][PATCH 2/3] packagegroup-core-security: add ptest capable packages Armin Kuster
2018-10-25  6:27 ` [meta-security][PATCH 3/3] layer.con: add TESTSUITE define Armin Kuster

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.