aboutsummaryrefslogtreecommitdiffhomepage
path: root/system
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2025-07-03 03:30:39 +0900
committerOphestra <cat@gensokyo.uk>2025-07-03 03:30:39 +0900
commitd2f9a9b83b1c43304081493eb2305309be1dd504 (patch)
tree1862e9415d705eff509afb3bdc8e574b78068ce6 /system
parent1b5ecd9eaf3289d164d8ed1bce6013e0e4ef8e86 (diff)
treewide: migrate to hakurei.app
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'system')
-rw-r--r--system/acl.go2
-rw-r--r--system/acl/acl_test.go2
-rw-r--r--system/acl_test.go2
-rw-r--r--system/dbus.go2
-rw-r--r--system/dbus/address_test.go2
-rw-r--r--system/dbus/config_test.go2
-rw-r--r--system/dbus/dbus_test.go10
-rw-r--r--system/dbus/proc.go8
-rw-r--r--system/dbus/proxy.go2
-rw-r--r--system/dbus/samples_test.go2
-rw-r--r--system/dbus/stub_test.go2
-rw-r--r--system/enablement_test.go2
-rw-r--r--system/op_test.go2
-rw-r--r--system/output.go2
-rw-r--r--system/wayland.go4
-rw-r--r--system/xhost.go2
16 files changed, 24 insertions, 24 deletions
diff --git a/system/acl.go b/system/acl.go
index 2efd7257..5d48c6c1 100644
--- a/system/acl.go
+++ b/system/acl.go
@@ -6,7 +6,7 @@ import (
"os"
"slices"
- "git.gensokyo.uk/security/hakurei/system/acl"
+ "hakurei.app/system/acl"
)
// UpdatePerm appends an ephemeral acl update Op.
diff --git a/system/acl/acl_test.go b/system/acl/acl_test.go
index bfb355e0..250dcd20 100644
--- a/system/acl/acl_test.go
+++ b/system/acl/acl_test.go
@@ -7,7 +7,7 @@ import (
"reflect"
"testing"
- "git.gensokyo.uk/security/hakurei/system/acl"
+ "hakurei.app/system/acl"
)
const testFileName = "acl.test"
diff --git a/system/acl_test.go b/system/acl_test.go
index f8f28323..a66207e4 100644
--- a/system/acl_test.go
+++ b/system/acl_test.go
@@ -3,7 +3,7 @@ package system
import (
"testing"
- "git.gensokyo.uk/security/hakurei/system/acl"
+ "hakurei.app/system/acl"
)
func TestUpdatePerm(t *testing.T) {
diff --git a/system/dbus.go b/system/dbus.go
index 8ca20e70..f6f4a2a7 100644
--- a/system/dbus.go
+++ b/system/dbus.go
@@ -9,7 +9,7 @@ import (
"sync"
"syscall"
- "git.gensokyo.uk/security/hakurei/system/dbus"
+ "hakurei.app/system/dbus"
)
var (
diff --git a/system/dbus/address_test.go b/system/dbus/address_test.go
index 148bb092..6bd0627b 100644
--- a/system/dbus/address_test.go
+++ b/system/dbus/address_test.go
@@ -5,7 +5,7 @@ import (
"reflect"
"testing"
- "git.gensokyo.uk/security/hakurei/system/dbus"
+ "hakurei.app/system/dbus"
)
func TestParse(t *testing.T) {
diff --git a/system/dbus/config_test.go b/system/dbus/config_test.go
index f79c4c50..0fe93303 100644
--- a/system/dbus/config_test.go
+++ b/system/dbus/config_test.go
@@ -9,7 +9,7 @@ import (
"strings"
"testing"
- "git.gensokyo.uk/security/hakurei/system/dbus"
+ "hakurei.app/system/dbus"
)
func TestConfig_Args(t *testing.T) {
diff --git a/system/dbus/dbus_test.go b/system/dbus/dbus_test.go
index 6fd23673..919e13a0 100644
--- a/system/dbus/dbus_test.go
+++ b/system/dbus/dbus_test.go
@@ -13,11 +13,11 @@ import (
"testing"
"time"
- "git.gensokyo.uk/security/hakurei/container"
- "git.gensokyo.uk/security/hakurei/helper"
- "git.gensokyo.uk/security/hakurei/internal"
- "git.gensokyo.uk/security/hakurei/internal/hlog"
- "git.gensokyo.uk/security/hakurei/system/dbus"
+ "hakurei.app/container"
+ "hakurei.app/helper"
+ "hakurei.app/internal"
+ "hakurei.app/internal/hlog"
+ "hakurei.app/system/dbus"
)
func TestFinalise(t *testing.T) {
diff --git a/system/dbus/proc.go b/system/dbus/proc.go
index cb041d01..879bc775 100644
--- a/system/dbus/proc.go
+++ b/system/dbus/proc.go
@@ -11,10 +11,10 @@ import (
"strconv"
"syscall"
- "git.gensokyo.uk/security/hakurei/container"
- "git.gensokyo.uk/security/hakurei/container/seccomp"
- "git.gensokyo.uk/security/hakurei/helper"
- "git.gensokyo.uk/security/hakurei/ldd"
+ "hakurei.app/container"
+ "hakurei.app/container/seccomp"
+ "hakurei.app/helper"
+ "hakurei.app/ldd"
)
// Start starts and configures a D-Bus proxy process.
diff --git a/system/dbus/proxy.go b/system/dbus/proxy.go
index cc0af1ea..8fed8f27 100644
--- a/system/dbus/proxy.go
+++ b/system/dbus/proxy.go
@@ -8,7 +8,7 @@ import (
"sync"
"syscall"
- "git.gensokyo.uk/security/hakurei/helper"
+ "hakurei.app/helper"
)
// ProxyName is the file name or path to the proxy program.
diff --git a/system/dbus/samples_test.go b/system/dbus/samples_test.go
index a5c6f273..43dda769 100644
--- a/system/dbus/samples_test.go
+++ b/system/dbus/samples_test.go
@@ -3,7 +3,7 @@ package dbus_test
import (
"sync"
- "git.gensokyo.uk/security/hakurei/system/dbus"
+ "hakurei.app/system/dbus"
)
const (
diff --git a/system/dbus/stub_test.go b/system/dbus/stub_test.go
index b05efd61..79725399 100644
--- a/system/dbus/stub_test.go
+++ b/system/dbus/stub_test.go
@@ -3,7 +3,7 @@ package dbus_test
import (
"testing"
- "git.gensokyo.uk/security/hakurei/helper"
+ "hakurei.app/helper"
)
func TestHelperStub(t *testing.T) { helper.InternalHelperStub() }
diff --git a/system/enablement_test.go b/system/enablement_test.go
index 69d16f76..ba81656b 100644
--- a/system/enablement_test.go
+++ b/system/enablement_test.go
@@ -3,7 +3,7 @@ package system_test
import (
"testing"
- "git.gensokyo.uk/security/hakurei/system"
+ "hakurei.app/system"
)
func TestEnablementString(t *testing.T) {
diff --git a/system/op_test.go b/system/op_test.go
index b5baf149..d11bcfaf 100644
--- a/system/op_test.go
+++ b/system/op_test.go
@@ -4,7 +4,7 @@ import (
"strconv"
"testing"
- "git.gensokyo.uk/security/hakurei/system"
+ "hakurei.app/system"
)
func TestNew(t *testing.T) {
diff --git a/system/output.go b/system/output.go
index d431310d..303f7493 100644
--- a/system/output.go
+++ b/system/output.go
@@ -1,7 +1,7 @@
package system
import (
- "git.gensokyo.uk/security/hakurei/container"
+ "hakurei.app/container"
)
var msg container.Msg = new(container.DefaultMsg)
diff --git a/system/wayland.go b/system/wayland.go
index a485b3f2..4705acbf 100644
--- a/system/wayland.go
+++ b/system/wayland.go
@@ -5,8 +5,8 @@ import (
"fmt"
"os"
- "git.gensokyo.uk/security/hakurei/system/acl"
- "git.gensokyo.uk/security/hakurei/system/wayland"
+ "hakurei.app/system/acl"
+ "hakurei.app/system/wayland"
)
// Wayland sets up a wayland socket with a security context attached.
diff --git a/system/xhost.go b/system/xhost.go
index dcb2eff3..7bbc3725 100644
--- a/system/xhost.go
+++ b/system/xhost.go
@@ -3,7 +3,7 @@ package system
import (
"fmt"
- "git.gensokyo.uk/security/hakurei/system/internal/xcb"
+ "hakurei.app/system/internal/xcb"
)
// ChangeHosts appends an X11 ChangeHosts command Op.