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 daf1323c5d.
This commit is contained in:
Neal Gompa 2024-12-10 13:14:52 -05:00
parent 479021dc34
commit 7d0edaa5c7
2 changed files with 0 additions and 2 deletions

View File

@ -68,7 +68,6 @@ class RootBind:
self.bind_locations = [
'/proc',
'/dev',
'/dev/pts',
'/var/run/dbus',
'/sys'
]

View File

@ -32,7 +32,6 @@ class TestRootBind:
assert self.bind_root.bind_locations == [
'/proc',
'/dev',
'/dev/pts',
'/var/run/dbus',
'/sys'
]