aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/app/container_linux.go
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2025-08-02 00:34:52 +0900
committerOphestra <cat@gensokyo.uk>2025-08-02 00:34:52 +0900
commitb32b1975a89d60beab75dfca723925131a06065b (patch)
tree75e4902d1359083a4b701c4462f8011c8179b40b /internal/app/container_linux.go
parent2b1eaa62f1ef94de8b22e2433a6070d8e7bbeb99 (diff)
hst/container: remove cover
This was never useful, and is now completely replaced by regular FilesystemConfig being able to mount tmpfs. Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/app/container_linux.go')
-rw-r--r--internal/app/container_linux.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/app/container_linux.go b/internal/app/container_linux.go
index 09909d83..ce3a5154 100644
--- a/internal/app/container_linux.go
+++ b/internal/app/container_linux.go
@@ -40,7 +40,7 @@ func newContainer(s *hst.ContainerConfig, os sys.State, prefix string, uid, gid
}
{
- ops := make(container.Ops, 0, preallocateOpsCount+len(s.Filesystem)+len(s.Link)+len(s.Cover))
+ ops := make(container.Ops, 0, preallocateOpsCount+len(s.Filesystem)+len(s.Link))
params.Ops = &ops
}