aboutsummaryrefslogtreecommitdiffhomepage
path: root/container/autoetc.go
diff options
context:
space:
mode:
Diffstat (limited to 'container/autoetc.go')
-rw-r--r--container/autoetc.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/container/autoetc.go b/container/autoetc.go
index 3be4ec38..9a587404 100644
--- a/container/autoetc.go
+++ b/container/autoetc.go
@@ -64,5 +64,5 @@ func (e *AutoEtcOp) Is(op Op) bool {
ve, ok := op.(*AutoEtcOp)
return ok && e.Valid() && ve.Valid() && *e == *ve
}
-func (*AutoEtcOp) prefix() string { return "setting up" }
-func (e *AutoEtcOp) String() string { return fmt.Sprintf("auto etc %s", e.Prefix) }
+func (*AutoEtcOp) prefix() (string, bool) { return "setting up", true }
+func (e *AutoEtcOp) String() string { return fmt.Sprintf("auto etc %s", e.Prefix) }