aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/outcome
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2026-03-17 15:56:36 +0900
committerOphestra <cat@gensokyo.uk>2026-03-17 15:56:36 +0900
commit722989c68256469963aee963bed9c6ab4bf55b67 (patch)
treee31098961db50530d196e93e65f3fa770243cc03 /internal/outcome
parentb852402f67b22a3a850ce4eb1305a3ce5898d128 (diff)
fhs: move from container
This package is not container-specific. Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/outcome')
-rw-r--r--internal/outcome/hsu.go2
-rw-r--r--internal/outcome/process.go2
-rw-r--r--internal/outcome/run_test.go2
-rw-r--r--internal/outcome/shim.go2
-rw-r--r--internal/outcome/shim_test.go2
-rw-r--r--internal/outcome/spaccount.go2
-rw-r--r--internal/outcome/spcontainer.go2
-rw-r--r--internal/outcome/spcontainer_test.go2
-rw-r--r--internal/outcome/spdbus.go2
-rw-r--r--internal/outcome/spruntime.go2
-rw-r--r--internal/outcome/spruntime_test.go2
-rw-r--r--internal/outcome/sptmpdir.go2
-rw-r--r--internal/outcome/sptmpdir_test.go2
-rw-r--r--internal/outcome/spx11.go2
14 files changed, 14 insertions, 14 deletions
diff --git a/internal/outcome/hsu.go b/internal/outcome/hsu.go
index 84751b45..118fd681 100644
--- a/internal/outcome/hsu.go
+++ b/internal/outcome/hsu.go
@@ -9,7 +9,7 @@ import (
"strconv"
"sync"
- "hakurei.app/container/fhs"
+ "hakurei.app/fhs"
"hakurei.app/hst"
"hakurei.app/message"
)
diff --git a/internal/outcome/process.go b/internal/outcome/process.go
index 6ee26f6d..9b8fc537 100644
--- a/internal/outcome/process.go
+++ b/internal/outcome/process.go
@@ -14,7 +14,7 @@ import (
"hakurei.app/check"
"hakurei.app/container"
- "hakurei.app/container/fhs"
+ "hakurei.app/fhs"
"hakurei.app/hst"
"hakurei.app/internal/info"
"hakurei.app/internal/store"
diff --git a/internal/outcome/run_test.go b/internal/outcome/run_test.go
index 83e6d98a..73219bbe 100644
--- a/internal/outcome/run_test.go
+++ b/internal/outcome/run_test.go
@@ -17,9 +17,9 @@ import (
"hakurei.app/check"
"hakurei.app/container"
- "hakurei.app/container/fhs"
"hakurei.app/container/seccomp"
"hakurei.app/container/std"
+ "hakurei.app/fhs"
"hakurei.app/hst"
"hakurei.app/internal/acl"
"hakurei.app/internal/dbus"
diff --git a/internal/outcome/shim.go b/internal/outcome/shim.go
index 43be1282..6f509e14 100644
--- a/internal/outcome/shim.go
+++ b/internal/outcome/shim.go
@@ -15,10 +15,10 @@ import (
"hakurei.app/check"
"hakurei.app/container"
- "hakurei.app/container/fhs"
"hakurei.app/container/seccomp"
"hakurei.app/container/std"
"hakurei.app/ext"
+ "hakurei.app/fhs"
"hakurei.app/hst"
"hakurei.app/internal/pipewire"
"hakurei.app/message"
diff --git a/internal/outcome/shim_test.go b/internal/outcome/shim_test.go
index 61d167f5..aa8220b8 100644
--- a/internal/outcome/shim_test.go
+++ b/internal/outcome/shim_test.go
@@ -10,11 +10,11 @@ import (
"testing"
"hakurei.app/container"
- "hakurei.app/container/fhs"
"hakurei.app/container/seccomp"
"hakurei.app/container/std"
"hakurei.app/container/stub"
"hakurei.app/ext"
+ "hakurei.app/fhs"
"hakurei.app/hst"
"hakurei.app/internal/env"
)
diff --git a/internal/outcome/spaccount.go b/internal/outcome/spaccount.go
index 0e9c602a..1a849cb5 100644
--- a/internal/outcome/spaccount.go
+++ b/internal/outcome/spaccount.go
@@ -5,7 +5,7 @@ import (
"fmt"
"syscall"
- "hakurei.app/container/fhs"
+ "hakurei.app/fhs"
"hakurei.app/internal/validate"
)
diff --git a/internal/outcome/spcontainer.go b/internal/outcome/spcontainer.go
index 307729f4..ba529955 100644
--- a/internal/outcome/spcontainer.go
+++ b/internal/outcome/spcontainer.go
@@ -12,9 +12,9 @@ import (
"hakurei.app/check"
"hakurei.app/container"
- "hakurei.app/container/fhs"
"hakurei.app/container/seccomp"
"hakurei.app/container/std"
+ "hakurei.app/fhs"
"hakurei.app/hst"
"hakurei.app/internal/acl"
"hakurei.app/internal/dbus"
diff --git a/internal/outcome/spcontainer_test.go b/internal/outcome/spcontainer_test.go
index 6b3d2b1c..d1f26468 100644
--- a/internal/outcome/spcontainer_test.go
+++ b/internal/outcome/spcontainer_test.go
@@ -9,10 +9,10 @@ import (
"hakurei.app/check"
"hakurei.app/container"
- "hakurei.app/container/fhs"
"hakurei.app/container/seccomp"
"hakurei.app/container/std"
"hakurei.app/container/stub"
+ "hakurei.app/fhs"
"hakurei.app/hst"
"hakurei.app/internal/acl"
"hakurei.app/internal/dbus"
diff --git a/internal/outcome/spdbus.go b/internal/outcome/spdbus.go
index 5939ede9..a50f9cd2 100644
--- a/internal/outcome/spdbus.go
+++ b/internal/outcome/spdbus.go
@@ -3,7 +3,7 @@ package outcome
import (
"encoding/gob"
- "hakurei.app/container/fhs"
+ "hakurei.app/fhs"
"hakurei.app/hst"
"hakurei.app/internal/acl"
"hakurei.app/internal/dbus"
diff --git a/internal/outcome/spruntime.go b/internal/outcome/spruntime.go
index 1bf26a02..15974a44 100644
--- a/internal/outcome/spruntime.go
+++ b/internal/outcome/spruntime.go
@@ -4,8 +4,8 @@ import (
"encoding/gob"
"hakurei.app/check"
- "hakurei.app/container/fhs"
"hakurei.app/container/std"
+ "hakurei.app/fhs"
"hakurei.app/hst"
"hakurei.app/internal/acl"
"hakurei.app/internal/system"
diff --git a/internal/outcome/spruntime_test.go b/internal/outcome/spruntime_test.go
index 58cf90d7..bd7ad37c 100644
--- a/internal/outcome/spruntime_test.go
+++ b/internal/outcome/spruntime_test.go
@@ -4,9 +4,9 @@ import (
"testing"
"hakurei.app/container"
- "hakurei.app/container/fhs"
"hakurei.app/container/std"
"hakurei.app/container/stub"
+ "hakurei.app/fhs"
"hakurei.app/hst"
"hakurei.app/internal/acl"
"hakurei.app/internal/system"
diff --git a/internal/outcome/sptmpdir.go b/internal/outcome/sptmpdir.go
index 44931867..daa6f0de 100644
--- a/internal/outcome/sptmpdir.go
+++ b/internal/outcome/sptmpdir.go
@@ -4,8 +4,8 @@ import (
"encoding/gob"
"hakurei.app/check"
- "hakurei.app/container/fhs"
"hakurei.app/container/std"
+ "hakurei.app/fhs"
"hakurei.app/hst"
"hakurei.app/internal/acl"
"hakurei.app/internal/system"
diff --git a/internal/outcome/sptmpdir_test.go b/internal/outcome/sptmpdir_test.go
index 61290c8d..fd9dc1df 100644
--- a/internal/outcome/sptmpdir_test.go
+++ b/internal/outcome/sptmpdir_test.go
@@ -4,9 +4,9 @@ import (
"testing"
"hakurei.app/container"
- "hakurei.app/container/fhs"
"hakurei.app/container/std"
"hakurei.app/container/stub"
+ "hakurei.app/fhs"
"hakurei.app/hst"
"hakurei.app/internal/acl"
"hakurei.app/internal/system"
diff --git a/internal/outcome/spx11.go b/internal/outcome/spx11.go
index 49e5863f..c71ff530 100644
--- a/internal/outcome/spx11.go
+++ b/internal/outcome/spx11.go
@@ -9,7 +9,7 @@ import (
"strings"
"hakurei.app/check"
- "hakurei.app/container/fhs"
+ "hakurei.app/fhs"
"hakurei.app/hst"
"hakurei.app/internal/acl"
)