From a9e3b045763fc862a54e4d893816c219c2f3ad48 Mon Sep 17 00:00:00 2001 From: Armin Kuster Date: Wed, 18 Mar 2020 02:30:12 +0000 Subject: checksec: move to recipe-scanners Signed-off-by: Armin Kuster --- recipes-scanners/checksec/checksec_2.1.0.bb | 19 +++++++++++++++++++ recipes-security/checksec/checksec_2.1.0.bb | 19 ------------------- 2 files changed, 19 insertions(+), 19 deletions(-) create mode 100644 recipes-scanners/checksec/checksec_2.1.0.bb delete mode 100644 recipes-security/checksec/checksec_2.1.0.bb diff --git a/recipes-scanners/checksec/checksec_2.1.0.bb b/recipes-scanners/checksec/checksec_2.1.0.bb new file mode 100644 index 0000000..b67c98b --- /dev/null +++ b/recipes-scanners/checksec/checksec_2.1.0.bb @@ -0,0 +1,19 @@ +SUMMARY = "Linux system security checks" +DESCRIPTION = "The checksec script is designed to test what standard Linux OS and PaX security features are being used." +SECTION = "security" +LICENSE = "BSD" +HOMEPAGE="https://github.com/slimm609/checksec.sh" + +LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=93fddcca19f6c897871f9b5f9a035f4a" + +SRCREV = "04582bad41589ad479ca8b1f0170ed317475b5a5" +SRC_URI = "git://github.com/slimm609/checksec.sh" + +S = "${WORKDIR}/git" + +do_install() { + install -d ${D}${bindir} + install -m 0755 ${S}/checksec ${D}${bindir} +} + +RDEPENDS_${PN} = "bash openssl-bin binutils" diff --git a/recipes-security/checksec/checksec_2.1.0.bb b/recipes-security/checksec/checksec_2.1.0.bb deleted file mode 100644 index b67c98b..0000000 --- a/recipes-security/checksec/checksec_2.1.0.bb +++ /dev/null @@ -1,19 +0,0 @@ -SUMMARY = "Linux system security checks" -DESCRIPTION = "The checksec script is designed to test what standard Linux OS and PaX security features are being used." -SECTION = "security" -LICENSE = "BSD" -HOMEPAGE="https://github.com/slimm609/checksec.sh" - -LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=93fddcca19f6c897871f9b5f9a035f4a" - -SRCREV = "04582bad41589ad479ca8b1f0170ed317475b5a5" -SRC_URI = "git://github.com/slimm609/checksec.sh" - -S = "${WORKDIR}/git" - -do_install() { - install -d ${D}${bindir} - install -m 0755 ${S}/checksec ${D}${bindir} -} - -RDEPENDS_${PN} = "bash openssl-bin binutils" -- cgit v1.2.3-54-g00ecf