nsenter: Do not enter user namespace
ContainerImages/cfg/pipeline/head This commit looks good Details

Running `nsenter` with `-U` fails:

```
nsenter: setns(): can't reassociate to namespace 'user': Invalid argument
```

This is probably because the container runs in the same user namespace
as the host anyway, so it really doesn't matter.
main
Dustin 2024-01-19 16:29:38 -06:00
parent 47f36b3614
commit c068619c8a
1 changed files with 1 additions and 1 deletions

View File

@ -1,3 +1,3 @@
#!/bin/sh
exec nsenter -m -u -i -n -p -U -t 1 "${0##*/}" "$@"
exec nsenter -m -u -i -n -p -t 1 "${0##*/}" "$@"