1
0
forked from rosa/hakurei

check: move from container

This package is not container specific, and widely used across the project.

Signed-off-by: Ophestra <cat@gensokyo.uk>
This commit is contained in:
2026-03-17 15:35:58 +09:00
parent e9a72490db
commit 6d015a949e
103 changed files with 103 additions and 103 deletions

View File

@@ -5,7 +5,7 @@ import (
"strconv"
"strings"
"hakurei.app/container/check"
"hakurei.app/check"
"hakurei.app/ext"
)

View File

@@ -6,7 +6,7 @@ import (
"syscall"
"time"
"hakurei.app/container/check"
"hakurei.app/check"
)
// PrivateTmp is a private writable path in a hakurei container.

View File

@@ -7,7 +7,7 @@ import (
"os"
"reflect"
"hakurei.app/container/check"
"hakurei.app/check"
)
// FilesystemConfig is an abstract representation of a mount point.

View File

@@ -9,8 +9,8 @@ import (
"syscall"
"testing"
"hakurei.app/check"
"hakurei.app/container"
"hakurei.app/container/check"
"hakurei.app/hst"
)

View File

@@ -4,7 +4,7 @@ import (
"encoding/gob"
"strings"
"hakurei.app/container/check"
"hakurei.app/check"
"hakurei.app/container/fhs"
"hakurei.app/container/std"
)

View File

@@ -3,7 +3,7 @@ package hst
import (
"encoding/gob"
"hakurei.app/container/check"
"hakurei.app/check"
)
func init() { gob.Register(new(FSDaemon)) }

View File

@@ -5,7 +5,7 @@ import (
"os"
"strings"
"hakurei.app/container/check"
"hakurei.app/check"
)
func init() { gob.Register(new(FSEphemeral)) }

View File

@@ -4,7 +4,7 @@ import (
"encoding/gob"
"path"
"hakurei.app/container/check"
"hakurei.app/check"
)
func init() { gob.Register(new(FSLink)) }

View File

@@ -4,7 +4,7 @@ import (
"encoding/gob"
"strings"
"hakurei.app/container/check"
"hakurei.app/check"
)
func init() { gob.Register(new(FSOverlay)) }

View File

@@ -3,8 +3,8 @@ package hst_test
import (
"testing"
"hakurei.app/check"
"hakurei.app/container"
"hakurei.app/container/check"
"hakurei.app/hst"
)

View File

@@ -7,7 +7,7 @@ import (
"net"
"os"
"hakurei.app/container/check"
"hakurei.app/check"
"hakurei.app/container/fhs"
)