diff options
author | Patrick Vogelaar <patrick.vogelaar@belden.com> | 2025-08-24 14:14:14 +0200 |
---|---|---|
committer | Bruce Ashfield <bruce.ashfield@gmail.com> | 2025-09-18 22:17:13 -0400 |
commit | 39d095241e3a768c2d0f6292513597d5964d21d5 (patch) | |
tree | 26b423cc8b85d1277aa75e0d852423742e98a4e4 | |
parent | 4aebf900d9d5e4b500f3b9e21450f4c88ab9e0d3 (diff) | |
download | meta-virtualization-39d095241e3a768c2d0f6292513597d5964d21d5.tar.gz |
docker: make ca-certificates a packageconfigmaster-next
Moving ca-certificates into a packageconfig allows using docker without
installing all the certificates.
Signed-off-by: Patrick Vogelaar <patrick.vogelaar@belden.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
-rw-r--r-- | recipes-containers/docker/docker.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/recipes-containers/docker/docker.inc b/recipes-containers/docker/docker.inc index 94ee34db..c464bc3c 100644 --- a/recipes-containers/docker/docker.inc +++ b/recipes-containers/docker/docker.inc | |||
@@ -10,7 +10,6 @@ RDEPENDS:${PN} = "util-linux util-linux-unshare iptables \ | |||
10 | ${@bb.utils.contains('DISTRO_FEATURES', 'aufs', 'aufs-util', '', d)} \ | 10 | ${@bb.utils.contains('DISTRO_FEATURES', 'aufs', 'aufs-util', '', d)} \ |
11 | ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', '', 'cgroup-lite', d)} \ | 11 | ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', '', 'cgroup-lite', d)} \ |
12 | bridge-utils \ | 12 | bridge-utils \ |
13 | ca-certificates \ | ||
14 | " | 13 | " |
15 | RDEPENDS:${PN} += "virtual-containerd ${VIRTUAL-RUNTIME_container_runtime}" | 14 | RDEPENDS:${PN} += "virtual-containerd ${VIRTUAL-RUNTIME_container_runtime}" |
16 | 15 | ||
@@ -37,10 +36,11 @@ RPROVIDES:${PN}-dev += "docker-dev" | |||
37 | RPROVIDES:${PN}-contrip += "docker-dev" | 36 | RPROVIDES:${PN}-contrip += "docker-dev" |
38 | 37 | ||
39 | inherit pkgconfig | 38 | inherit pkgconfig |
40 | PACKAGECONFIG ??= "docker-init seccomp" | 39 | PACKAGECONFIG ??= "docker-init seccomp ca-certs" |
41 | PACKAGECONFIG[seccomp] = "seccomp,,libseccomp" | 40 | PACKAGECONFIG[seccomp] = "seccomp,,libseccomp" |
42 | PACKAGECONFIG[docker-init] = ",,,docker-init" | 41 | PACKAGECONFIG[docker-init] = ",,,docker-init" |
43 | PACKAGECONFIG[transient-config] = "transient-config" | 42 | PACKAGECONFIG[transient-config] = "transient-config" |
43 | PACKAGECONFIG[ca-certs] = ",,,ca-certificates" | ||
44 | 44 | ||
45 | GO_IMPORT = "import" | 45 | GO_IMPORT = "import" |
46 | 46 | ||