aboutsummaryrefslogtreecommitdiff
path: root/pkg/rootless/rootless.go
blob: a531e43ce3ef3cc69eb222df211b9ea05be2e0b1 (plain)
1
2
3
4
5
6
7
8
9
package rootless

// Opts allows to customize how re-execing to a rootless process is done
type Opts struct {
	// Argument overrides the arguments on the command line
	// for the re-execed process.  The process in the namespace
	// must use rootless.Argument() to read its value.
	Argument string
}