We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cfd25b0 commit b14b3c5Copy full SHA for b14b3c5
crates/libcontainer/src/process/init/process.rs
@@ -553,7 +553,9 @@ fn apply_rest_namespaces(
553
) -> Result<()> {
554
namespaces
555
.apply_namespaces(|ns_type| -> bool {
556
- ns_type != CloneFlags::CLONE_NEWUSER && ns_type != CloneFlags::CLONE_NEWPID
+ ns_type != CloneFlags::CLONE_NEWUSER
557
+ && ns_type != CloneFlags::CLONE_NEWPID
558
+ && ns_type != CloneFlags::from_bits_retain(LinuxNamespaceType::Time as i32)
559
})
560
.map_err(|err| {
561
tracing::error!(
0 commit comments