Skip to content

Commit

Permalink
Revert "Added /dev/pts to bind mount locations"
Browse files Browse the repository at this point in the history
This has created havoc in the Fedora build environments by
fully unmounting /dev/pts and breaking the builders for
subsquent tasks.

This reverts commit daf1323.
  • Loading branch information
Conan-Kudo committed Dec 6, 2024
1 parent 479021d commit e1a0759
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
1 change: 0 additions & 1 deletion kiwi/system/root_bind.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ def __init__(self, root_init: RootInit):
self.bind_locations = [
'/proc',
'/dev',
'/dev/pts',
'/var/run/dbus',
'/sys'
]
Expand Down
9 changes: 0 additions & 9 deletions test/unit/system/root_bind_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,6 @@ def setup(self):
root.root_dir = 'root-dir'
self.bind_root = RootBind(root)

# test expected real bind mount locations
assert self.bind_root.bind_locations == [
'/proc',
'/dev',
'/dev/pts',
'/var/run/dbus',
'/sys'
]

# stub config files and bind locations
self.bind_root.config_files = ['/etc/sysconfig/proxy']
self.bind_root.bind_locations = ['/proc']
Expand Down

0 comments on commit e1a0759

Please sign in to comment.