diff options
| author | Ophestra <cat@gensokyo.uk> | 2025-07-03 03:30:39 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2025-07-03 03:30:39 +0900 |
| commit | d2f9a9b83b1c43304081493eb2305309be1dd504 (patch) | |
| tree | 1862e9415d705eff509afb3bdc8e574b78068ce6 /container | |
| parent | 1b5ecd9eaf3289d164d8ed1bce6013e0e4ef8e86 (diff) | |
treewide: migrate to hakurei.app
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'container')
| -rw-r--r-- | container/container.go | 2 | ||||
| -rw-r--r-- | container/container_test.go | 14 | ||||
| -rw-r--r-- | container/executable_test.go | 2 | ||||
| -rw-r--r-- | container/init.go | 2 | ||||
| -rw-r--r-- | container/mount.go | 2 | ||||
| -rw-r--r-- | container/path.go | 2 | ||||
| -rw-r--r-- | container/seccomp/libseccomp_test.go | 2 | ||||
| -rw-r--r-- | container/seccomp/proc.go | 2 | ||||
| -rw-r--r-- | container/seccomp/seccomp_test.go | 2 | ||||
| -rw-r--r-- | container/vfs/mangle_test.go | 2 | ||||
| -rw-r--r-- | container/vfs/mountinfo_test.go | 2 | ||||
| -rw-r--r-- | container/vfs/unfold_test.go | 2 |
12 files changed, 18 insertions, 18 deletions
diff --git a/container/container.go b/container/container.go index 62aa16d7..8001673a 100644 --- a/container/container.go +++ b/container/container.go @@ -14,7 +14,7 @@ import ( . "syscall" "time" - "git.gensokyo.uk/security/hakurei/container/seccomp" + "hakurei.app/container/seccomp" ) type ( diff --git a/container/container_test.go b/container/container_test.go index 95f53619..4ded1fb5 100644 --- a/container/container_test.go +++ b/container/container_test.go @@ -12,13 +12,13 @@ import ( "testing" "time" - "git.gensokyo.uk/security/hakurei/container" - "git.gensokyo.uk/security/hakurei/container/seccomp" - "git.gensokyo.uk/security/hakurei/container/vfs" - "git.gensokyo.uk/security/hakurei/hst" - "git.gensokyo.uk/security/hakurei/internal" - "git.gensokyo.uk/security/hakurei/internal/hlog" - "git.gensokyo.uk/security/hakurei/ldd" + "hakurei.app/container" + "hakurei.app/container/seccomp" + "hakurei.app/container/vfs" + "hakurei.app/hst" + "hakurei.app/internal" + "hakurei.app/internal/hlog" + "hakurei.app/ldd" ) const ( diff --git a/container/executable_test.go b/container/executable_test.go index 00e67b79..2a44017a 100644 --- a/container/executable_test.go +++ b/container/executable_test.go @@ -4,7 +4,7 @@ import ( "os" "testing" - "git.gensokyo.uk/security/hakurei/container" + "hakurei.app/container" ) func TestExecutable(t *testing.T) { diff --git a/container/init.go b/container/init.go index 18d38c35..8fc8e223 100644 --- a/container/init.go +++ b/container/init.go @@ -13,7 +13,7 @@ import ( . "syscall" "time" - "git.gensokyo.uk/security/hakurei/container/seccomp" + "hakurei.app/container/seccomp" ) const ( diff --git a/container/mount.go b/container/mount.go index eddec2f6..52563d78 100644 --- a/container/mount.go +++ b/container/mount.go @@ -7,7 +7,7 @@ import ( "path/filepath" . "syscall" - "git.gensokyo.uk/security/hakurei/container/vfs" + "hakurei.app/container/vfs" ) func (p *procPaths) bindMount(source, target string, flags uintptr, eq bool) error { diff --git a/container/path.go b/container/path.go index a3938ff5..632892af 100644 --- a/container/path.go +++ b/container/path.go @@ -10,7 +10,7 @@ import ( "strings" "syscall" - "git.gensokyo.uk/security/hakurei/container/vfs" + "hakurei.app/container/vfs" ) const ( diff --git a/container/seccomp/libseccomp_test.go b/container/seccomp/libseccomp_test.go index a8bfcbf2..4e189341 100644 --- a/container/seccomp/libseccomp_test.go +++ b/container/seccomp/libseccomp_test.go @@ -8,7 +8,7 @@ import ( "syscall" "testing" - . "git.gensokyo.uk/security/hakurei/container/seccomp" + . "hakurei.app/container/seccomp" ) func TestExport(t *testing.T) { diff --git a/container/seccomp/proc.go b/container/seccomp/proc.go index e4ce1853..76773b25 100644 --- a/container/seccomp/proc.go +++ b/container/seccomp/proc.go @@ -5,7 +5,7 @@ import ( "errors" "syscall" - "git.gensokyo.uk/security/hakurei/helper/proc" + "hakurei.app/helper/proc" ) const ( diff --git a/container/seccomp/seccomp_test.go b/container/seccomp/seccomp_test.go index 2b59c9bc..a3dcad56 100644 --- a/container/seccomp/seccomp_test.go +++ b/container/seccomp/seccomp_test.go @@ -6,7 +6,7 @@ import ( "syscall" "testing" - "git.gensokyo.uk/security/hakurei/container/seccomp" + "hakurei.app/container/seccomp" ) func TestLibraryError(t *testing.T) { diff --git a/container/vfs/mangle_test.go b/container/vfs/mangle_test.go index d9444a84..2cc65be0 100644 --- a/container/vfs/mangle_test.go +++ b/container/vfs/mangle_test.go @@ -3,7 +3,7 @@ package vfs_test import ( "testing" - "git.gensokyo.uk/security/hakurei/container/vfs" + "hakurei.app/container/vfs" ) func TestUnmangle(t *testing.T) { diff --git a/container/vfs/mountinfo_test.go b/container/vfs/mountinfo_test.go index cec7dcde..fa75b3c9 100644 --- a/container/vfs/mountinfo_test.go +++ b/container/vfs/mountinfo_test.go @@ -12,7 +12,7 @@ import ( "syscall" "testing" - "git.gensokyo.uk/security/hakurei/container/vfs" + "hakurei.app/container/vfs" ) func TestMountInfo(t *testing.T) { diff --git a/container/vfs/unfold_test.go b/container/vfs/unfold_test.go index c464e0fe..cd6ace18 100644 --- a/container/vfs/unfold_test.go +++ b/container/vfs/unfold_test.go @@ -8,7 +8,7 @@ import ( "syscall" "testing" - "git.gensokyo.uk/security/hakurei/container/vfs" + "hakurei.app/container/vfs" ) func TestUnfold(t *testing.T) { |
