You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
973 B
28 lines
973 B
2 years ago
|
From 39cfeea12a38df825e264ce3a71489f35d4b95c3 Mon Sep 17 00:00:00 2001
|
||
|
From: Tomas Kopecek <tkopecek@redhat.com>
|
||
|
Date: Mon, 31 Oct 2022 13:09:19 +0100
|
||
|
Subject: [PATCH 3/6] kiwi: don't bind builders's /dev
|
||
|
|
||
|
Related: https://pagure.io/koji/issue/3567
|
||
|
(cherry picked from commit 655cb9797fe85f8dc1244f233da2919abfa1548f)
|
||
|
---
|
||
|
plugins/builder/kiwi.py | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/plugins/builder/kiwi.py b/plugins/builder/kiwi.py
|
||
|
index 7d6f6e7e..e220d515 100644
|
||
|
--- a/plugins/builder/kiwi.py
|
||
|
+++ b/plugins/builder/kiwi.py
|
||
|
@@ -307,7 +307,7 @@ class KiwiCreateImageTask(BaseBuildTask):
|
||
|
repo_id=repo_info['id'],
|
||
|
install_group='kiwi-build',
|
||
|
setup_dns=True,
|
||
|
- bind_opts={'dirs': {'/dev': '/dev', }})
|
||
|
+ bind_opts={'dirs': {}})
|
||
|
broot.workdir = self.workdir
|
||
|
|
||
|
# create the mock chroot
|
||
|
--
|
||
|
2.38.1
|
||
|
|