aboutsummaryrefslogtreecommitdiffhomepage
path: root/system/dbus
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/dbus
parent1b5ecd9eaf3289d164d8ed1bce6013e0e4ef8e86 (diff)
treewide: migrate to hakurei.app
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'system/dbus')
-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
7 files changed, 14 insertions, 14 deletions
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() }