aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/system
diff options
context:
space:
mode:
authorOphestra Umiker <cat@ophivana.moe>2024-10-20 19:50:13 +0900
committerOphestra Umiker <cat@ophivana.moe>2024-10-20 19:50:13 +0900
commit65af1684e3f12c1920f91c96474f19dbd0b147fc (patch)
tree0e721a066726e009daa71eb2cbcf3ccf5adb546c /internal/system
parentcdda33555cf5967221523b90ede1f4eda2a82ce3 (diff)
migrate to git.ophivana.moe/security/fortify
Signed-off-by: Ophestra Umiker <cat@ophivana.moe>
Diffstat (limited to 'internal/system')
-rw-r--r--internal/system/acl.go6
-rw-r--r--internal/system/acl_test.go2
-rw-r--r--internal/system/dbus.go6
-rw-r--r--internal/system/mkdir.go4
-rw-r--r--internal/system/op_test.go2
-rw-r--r--internal/system/tmpfiles.go6
-rw-r--r--internal/system/tmpfiles_test.go2
-rw-r--r--internal/system/xhost.go6
8 files changed, 17 insertions, 17 deletions
diff --git a/internal/system/acl.go b/internal/system/acl.go
index 9fc047f0..e4bc9359 100644
--- a/internal/system/acl.go
+++ b/internal/system/acl.go
@@ -4,9 +4,9 @@ import (
"fmt"
"slices"
- "git.ophivana.moe/cat/fortify/acl"
- "git.ophivana.moe/cat/fortify/internal/fmsg"
- "git.ophivana.moe/cat/fortify/internal/verbose"
+ "git.ophivana.moe/security/fortify/acl"
+ "git.ophivana.moe/security/fortify/internal/fmsg"
+ "git.ophivana.moe/security/fortify/internal/verbose"
)
// UpdatePerm appends an ephemeral acl update Op.
diff --git a/internal/system/acl_test.go b/internal/system/acl_test.go
index 37384e1a..fe456c70 100644
--- a/internal/system/acl_test.go
+++ b/internal/system/acl_test.go
@@ -3,7 +3,7 @@ package system
import (
"testing"
- "git.ophivana.moe/cat/fortify/acl"
+ "git.ophivana.moe/security/fortify/acl"
)
func TestUpdatePerm(t *testing.T) {
diff --git a/internal/system/dbus.go b/internal/system/dbus.go
index 21b8cef7..8fe7d510 100644
--- a/internal/system/dbus.go
+++ b/internal/system/dbus.go
@@ -5,9 +5,9 @@ import (
"fmt"
"os"
- "git.ophivana.moe/cat/fortify/dbus"
- "git.ophivana.moe/cat/fortify/internal/fmsg"
- "git.ophivana.moe/cat/fortify/internal/verbose"
+ "git.ophivana.moe/security/fortify/dbus"
+ "git.ophivana.moe/security/fortify/internal/fmsg"
+ "git.ophivana.moe/security/fortify/internal/verbose"
)
var (
diff --git a/internal/system/mkdir.go b/internal/system/mkdir.go
index 33e241a0..89dcd481 100644
--- a/internal/system/mkdir.go
+++ b/internal/system/mkdir.go
@@ -5,8 +5,8 @@ import (
"fmt"
"os"
- "git.ophivana.moe/cat/fortify/internal/fmsg"
- "git.ophivana.moe/cat/fortify/internal/verbose"
+ "git.ophivana.moe/security/fortify/internal/fmsg"
+ "git.ophivana.moe/security/fortify/internal/verbose"
)
// Ensure the existence and mode of a directory.
diff --git a/internal/system/op_test.go b/internal/system/op_test.go
index 428c7ea9..50f260ad 100644
--- a/internal/system/op_test.go
+++ b/internal/system/op_test.go
@@ -4,7 +4,7 @@ import (
"strconv"
"testing"
- "git.ophivana.moe/cat/fortify/internal/system"
+ "git.ophivana.moe/security/fortify/internal/system"
)
func TestNew(t *testing.T) {
diff --git a/internal/system/tmpfiles.go b/internal/system/tmpfiles.go
index ba25e077..7b23e0e6 100644
--- a/internal/system/tmpfiles.go
+++ b/internal/system/tmpfiles.go
@@ -7,9 +7,9 @@ import (
"os"
"strconv"
- "git.ophivana.moe/cat/fortify/acl"
- "git.ophivana.moe/cat/fortify/internal/fmsg"
- "git.ophivana.moe/cat/fortify/internal/verbose"
+ "git.ophivana.moe/security/fortify/acl"
+ "git.ophivana.moe/security/fortify/internal/fmsg"
+ "git.ophivana.moe/security/fortify/internal/verbose"
)
// CopyFile registers an Op that copies path dst from src.
diff --git a/internal/system/tmpfiles_test.go b/internal/system/tmpfiles_test.go
index afd92c7d..dbbf6bed 100644
--- a/internal/system/tmpfiles_test.go
+++ b/internal/system/tmpfiles_test.go
@@ -4,7 +4,7 @@ import (
"strconv"
"testing"
- "git.ophivana.moe/cat/fortify/acl"
+ "git.ophivana.moe/security/fortify/acl"
)
func TestCopyFile(t *testing.T) {
diff --git a/internal/system/xhost.go b/internal/system/xhost.go
index 40914756..4ed3f8bd 100644
--- a/internal/system/xhost.go
+++ b/internal/system/xhost.go
@@ -3,9 +3,9 @@ package system
import (
"fmt"
- "git.ophivana.moe/cat/fortify/internal/fmsg"
- "git.ophivana.moe/cat/fortify/internal/verbose"
- "git.ophivana.moe/cat/fortify/xcb"
+ "git.ophivana.moe/security/fortify/internal/fmsg"
+ "git.ophivana.moe/security/fortify/internal/verbose"
+ "git.ophivana.moe/security/fortify/xcb"
)
// ChangeHosts appends an X11 ChangeHosts command Op.