Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion kiwi/system/root_bind.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,8 @@ def __init__(self, root_init: RootInit):
'/proc',
'/dev',
'/var/run/dbus',
'/sys'
'/sys',
'/sys/fs/cgroup'
]
# share the following directory with the host
self.shared_location = '/' + Defaults.get_shared_cache_location()
Expand Down
3 changes: 2 additions & 1 deletion test/unit/system/root_bind_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ def setup(self):
'/proc',
'/dev',
'/var/run/dbus',
'/sys'
'/sys',
'/sys/fs/cgroup'
]

# stub config files and bind locations
Expand Down
Loading