meta-virtualization/recipes-containers/container-host-config/container-host-config.bb
Chen Qi 2b845f961d container-host-config: extend to native and nativesdk
skopeo rdepends on it, and skopeo has been extended to native and
nativesdk, so container-host-config needs also be extended.

Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
2023-02-21 10:11:48 -05:00

23 lines
731 B
BlitzBasic

HOMEPAGE = "https://git.yoctoproject.org/meta-virtualization"
SUMMARY = "Configuration Package for container hosts"
DESCRIPTION = "Common / centralized configuration files for container hosts"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
SRC_URI = " \
file://storage.conf \
file://registries.conf \
file://policy.json \
"
do_install() {
install -d ${D}/${sysconfdir}/containers
install ${WORKDIR}/storage.conf ${D}/${sysconfdir}/containers/storage.conf
install ${WORKDIR}/registries.conf ${D}/${sysconfdir}/containers/registries.conf
install ${WORKDIR}/policy.json ${D}/${sysconfdir}/containers/policy.json
}
BBCLASSEXTEND = "native nativesdk"