diff options
| -rw-r--r-- | recipes-security/images/security-client-image.bb | 17 | ||||
| -rw-r--r-- | recipes-security/images/security-server-image.bb | 20 |
2 files changed, 37 insertions, 0 deletions
diff --git a/recipes-security/images/security-client-image.bb b/recipes-security/images/security-client-image.bb new file mode 100644 index 0000000..1a92479 --- /dev/null +++ b/recipes-security/images/security-client-image.bb | |||
| @@ -0,0 +1,17 @@ | |||
| 1 | DESCRIPTION = "A Client side Security example" | ||
| 2 | |||
| 3 | IMAGE_INSTALL = "\ | ||
| 4 | packagegroup-base \ | ||
| 5 | packagegroup-core-boot \ | ||
| 6 | os-release \ | ||
| 7 | samhain-client \ | ||
| 8 | ${@bb.utils.contains("DISTRO_FEATURES", "x11", "packagegroup-xfce-base", "", d)} \ | ||
| 9 | ${ROOTFS_PKGMANAGE_BOOTSTRAP} ${CORE_IMAGE_EXTRA_INSTALL}" | ||
| 10 | |||
| 11 | IMAGE_LINGUAS ?= " " | ||
| 12 | |||
| 13 | LICENSE = "MIT" | ||
| 14 | |||
| 15 | inherit core-image | ||
| 16 | |||
| 17 | export IMAGE_BASENAME = "security-client-image" | ||
diff --git a/recipes-security/images/security-server-image.bb b/recipes-security/images/security-server-image.bb new file mode 100644 index 0000000..502b5c1 --- /dev/null +++ b/recipes-security/images/security-server-image.bb | |||
| @@ -0,0 +1,20 @@ | |||
| 1 | DESCRIPTION = "A Serve side image for Security example " | ||
| 2 | |||
| 3 | IMAGE_FEATURES += "ssh-server-openssh" | ||
| 4 | |||
| 5 | IMAGE_INSTALL = "\ | ||
| 6 | packagegroup-base \ | ||
| 7 | packagegroup-core-boot \ | ||
| 8 | samhain-server \ | ||
| 9 | os-release \ | ||
| 10 | ${ROOTFS_PKGMANAGE_BOOTSTRAP} ${CORE_IMAGE_EXTRA_INSTALL}" | ||
| 11 | |||
| 12 | IMAGE_LINGUAS ?= " " | ||
| 13 | |||
| 14 | LICENSE = "MIT" | ||
| 15 | |||
| 16 | inherit core-image | ||
| 17 | |||
| 18 | export IMAGE_BASENAME = "security-server-image" | ||
| 19 | |||
| 20 | IMAGE_ROOTFS_EXTRA_SPACE = "5242880" | ||
