aboutsummaryrefslogtreecommitdiffhomepage
path: root/container/ops.go
diff options
context:
space:
mode:
Diffstat (limited to 'container/ops.go')
-rw-r--r--container/ops.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/container/ops.go b/container/ops.go
index efc925b3..a08a12ff 100644
--- a/container/ops.go
+++ b/container/ops.go
@@ -24,6 +24,11 @@ const (
intermediatePatternTmpfile = "tmp.*"
)
+const (
+ nrAutoEtc = 1 << iota
+ nrAutoRoot
+)
+
type (
Ops []Op
@@ -41,6 +46,7 @@ type (
}
setupState struct {
+ nonrepeatable uintptr
*Params
}
)