Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: opencontainers/runc
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: a99f0a83cbbde0de6dfdbe2e8e500942f090bf84
Choose a base ref
..
head repository: opencontainers/runc
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 363768c7f7a8b11a7aa284ea4a07286edee25b4e
Choose a head ref
Showing with 6 additions and 4 deletions.
  1. +3 −2 create.go
  2. +3 −2 run.go
5 changes: 3 additions & 2 deletions create.go
Original file line number Diff line number Diff line change
@@ -44,8 +44,9 @@ command(s) that get executed on start, edit the args parameter of the spec. See
Usage: "specify the file to write the process id to",
},
cli.BoolFlag{
Name: "no-pivot",
Usage: "do not use pivot root to jail process inside rootfs. This should be used whenever the rootfs is on top of a ramdisk",
Name: "no-pivot",
Usage: "(deprecated; do not use)",
Hidden: true,
},
cli.BoolFlag{
Name: "no-new-keyring",
5 changes: 3 additions & 2 deletions run.go
Original file line number Diff line number Diff line change
@@ -57,8 +57,9 @@ command(s) that get executed on start, edit the args parameter of the spec. See
Usage: "disable the use of the subreaper used to reap reparented processes",
},
cli.BoolFlag{
Name: "no-pivot",
Usage: "do not use pivot root to jail process inside rootfs to work around limitations when running in an initramfs (this option is deprecated, insecure, and unnecessary now that pivot_root works with initramfs -- see <https://github.com/opencontainers/runc/issues/4435>)",
Name: "no-pivot",
Usage: "(deprecated; do not use)",
Hidden: true,
},
cli.BoolFlag{
Name: "no-new-keyring",