-
Notifications
You must be signed in to change notification settings - Fork 519
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docker-engine: inject kmod in all containers
- Loading branch information
Showing
2 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
32 changes: 32 additions & 0 deletions
32
packages/docker-engine/0002-oci-inject-kmod-in-all-containers.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
From e35f5eeeaa4c7b9ec1ae0720fc7de0fc4d43e02f Mon Sep 17 00:00:00 2001 | ||
From: Arnaldo Garcia Rincon <[email protected]> | ||
Date: Thu, 30 May 2024 14:38:33 +0000 | ||
Subject: [PATCH] oci: inject kmod in all containers | ||
|
||
Append a new mount to the default spec created for Linux containers | ||
|
||
Signed-off-by: Arnaldo Garcia Rincon <[email protected]> | ||
Signed-off-by: Vighnesh Maheshwari <[email protected]> | ||
--- | ||
oci/defaults.go | 6 ++++++ | ||
1 file changed, 6 insertions(+) | ||
|
||
diff --git a/oci/defaults.go b/oci/defaults.go | ||
index c3dae8b..2e90cfa 100644 | ||
--- a/oci/defaults.go | ||
+++ b/oci/defaults.go | ||
@@ -100,6 +100,12 @@ func DefaultLinuxSpec() specs.Spec { | ||
Source: "shm", | ||
Options: []string{"nosuid", "noexec", "nodev", "mode=1777"}, | ||
}, | ||
+ { | ||
+ Destination: "/usr/local/sbin/modprobe", | ||
+ Type: "bind", | ||
+ Source: "/usr/bin/kmod", | ||
+ Options: []string{"exec", "bind", "ro"}, | ||
+ }, | ||
}, | ||
Linux: &specs.Linux{ | ||
MaskedPaths: []string{ | ||
-- | ||
2.44.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters