From 7d0edaa5c74792c91f26eea3bb5046671e59ea52 Mon Sep 17 00:00:00 2001 From: Neal Gompa Date: Tue, 10 Dec 2024 13:14:52 -0500 Subject: [PATCH] Drop /dev/pts from bind mount locations This has created havoc in the Fedora build environments by fully unmounting /dev/pts and breaking the builders for subsquent tasks. This is a partial revert of commit daf1323c5ded7e4e7783205f5e30457b40eb322f. --- kiwi/system/root_bind.py | 1 - test/unit/system/root_bind_test.py | 1 - 2 files changed, 2 deletions(-) diff --git a/kiwi/system/root_bind.py b/kiwi/system/root_bind.py index bb5cbc6b..011b7c25 100644 --- a/kiwi/system/root_bind.py +++ b/kiwi/system/root_bind.py @@ -68,7 +68,6 @@ class RootBind: self.bind_locations = [ '/proc', '/dev', - '/dev/pts', '/var/run/dbus', '/sys' ] diff --git a/test/unit/system/root_bind_test.py b/test/unit/system/root_bind_test.py index dddc7534..5432f2c5 100644 --- a/test/unit/system/root_bind_test.py +++ b/test/unit/system/root_bind_test.py @@ -32,7 +32,6 @@ class TestRootBind: assert self.bind_root.bind_locations == [ '/proc', '/dev', - '/dev/pts', '/var/run/dbus', '/sys' ]