diff options
| author | Ophestra Umiker <cat@ophivana.moe> | 2024-12-20 00:20:02 +0900 |
|---|---|---|
| committer | Ophestra Umiker <cat@ophivana.moe> | 2024-12-20 00:20:02 +0900 |
| commit | df6fc298f608eb106229efc742f0ef8ce9f78e8b (patch) | |
| tree | 1f0ca426495f526aedf7f15ba5a495221be54f81 /internal/system | |
| parent | eae3034260b3abbb8da1deeddfef135b36eeb390 (diff) | |
migrate to git.gensokyo.uk/security/fortify
Signed-off-by: Ophestra Umiker <cat@ophivana.moe>
Diffstat (limited to 'internal/system')
| -rw-r--r-- | internal/system/acl.go | 4 | ||||
| -rw-r--r-- | internal/system/acl_test.go | 2 | ||||
| -rw-r--r-- | internal/system/dbus.go | 4 | ||||
| -rw-r--r-- | internal/system/mkdir.go | 2 | ||||
| -rw-r--r-- | internal/system/op.go | 2 | ||||
| -rw-r--r-- | internal/system/op_test.go | 2 | ||||
| -rw-r--r-- | internal/system/tmpfiles.go | 4 | ||||
| -rw-r--r-- | internal/system/tmpfiles_test.go | 2 | ||||
| -rw-r--r-- | internal/system/wayland.go | 6 | ||||
| -rw-r--r-- | internal/system/xhost.go | 4 |
10 files changed, 16 insertions, 16 deletions
diff --git a/internal/system/acl.go b/internal/system/acl.go index f927f187..935bee4e 100644 --- a/internal/system/acl.go +++ b/internal/system/acl.go @@ -4,8 +4,8 @@ import ( "fmt" "slices" - "git.ophivana.moe/security/fortify/acl" - "git.ophivana.moe/security/fortify/internal/fmsg" + "git.gensokyo.uk/security/fortify/acl" + "git.gensokyo.uk/security/fortify/internal/fmsg" ) // UpdatePerm appends an ephemeral acl update Op. diff --git a/internal/system/acl_test.go b/internal/system/acl_test.go index ed449ef3..ed154ad1 100644 --- a/internal/system/acl_test.go +++ b/internal/system/acl_test.go @@ -3,7 +3,7 @@ package system import ( "testing" - "git.ophivana.moe/security/fortify/acl" + "git.gensokyo.uk/security/fortify/acl" ) func TestUpdatePerm(t *testing.T) { diff --git a/internal/system/dbus.go b/internal/system/dbus.go index 75f343a7..551af1ce 100644 --- a/internal/system/dbus.go +++ b/internal/system/dbus.go @@ -7,8 +7,8 @@ import ( "strings" "sync" - "git.ophivana.moe/security/fortify/dbus" - "git.ophivana.moe/security/fortify/internal/fmsg" + "git.gensokyo.uk/security/fortify/dbus" + "git.gensokyo.uk/security/fortify/internal/fmsg" ) var ( diff --git a/internal/system/mkdir.go b/internal/system/mkdir.go index c868bee3..b634da45 100644 --- a/internal/system/mkdir.go +++ b/internal/system/mkdir.go @@ -5,7 +5,7 @@ import ( "fmt" "os" - "git.ophivana.moe/security/fortify/internal/fmsg" + "git.gensokyo.uk/security/fortify/internal/fmsg" ) // Ensure the existence and mode of a directory. diff --git a/internal/system/op.go b/internal/system/op.go index d2ca5dd7..d8479c7c 100644 --- a/internal/system/op.go +++ b/internal/system/op.go @@ -5,7 +5,7 @@ import ( "os" "sync" - "git.ophivana.moe/security/fortify/internal/fmsg" + "git.gensokyo.uk/security/fortify/internal/fmsg" ) const ( diff --git a/internal/system/op_test.go b/internal/system/op_test.go index e1419d0f..28929e6c 100644 --- a/internal/system/op_test.go +++ b/internal/system/op_test.go @@ -4,7 +4,7 @@ import ( "strconv" "testing" - "git.ophivana.moe/security/fortify/internal/system" + "git.gensokyo.uk/security/fortify/internal/system" ) func TestNew(t *testing.T) { diff --git a/internal/system/tmpfiles.go b/internal/system/tmpfiles.go index 7300f30a..e51eaaef 100644 --- a/internal/system/tmpfiles.go +++ b/internal/system/tmpfiles.go @@ -7,8 +7,8 @@ import ( "os" "strconv" - "git.ophivana.moe/security/fortify/acl" - "git.ophivana.moe/security/fortify/internal/fmsg" + "git.gensokyo.uk/security/fortify/acl" + "git.gensokyo.uk/security/fortify/internal/fmsg" ) // 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 dbbf6bed..eb0a2957 100644 --- a/internal/system/tmpfiles_test.go +++ b/internal/system/tmpfiles_test.go @@ -4,7 +4,7 @@ import ( "strconv" "testing" - "git.ophivana.moe/security/fortify/acl" + "git.gensokyo.uk/security/fortify/acl" ) func TestCopyFile(t *testing.T) { diff --git a/internal/system/wayland.go b/internal/system/wayland.go index 9394aaab..7c233472 100644 --- a/internal/system/wayland.go +++ b/internal/system/wayland.go @@ -5,9 +5,9 @@ import ( "fmt" "os" - "git.ophivana.moe/security/fortify/acl" - "git.ophivana.moe/security/fortify/internal/fmsg" - "git.ophivana.moe/security/fortify/wl" + "git.gensokyo.uk/security/fortify/acl" + "git.gensokyo.uk/security/fortify/internal/fmsg" + "git.gensokyo.uk/security/fortify/wl" ) // Wayland sets up a wayland socket with a security context attached. diff --git a/internal/system/xhost.go b/internal/system/xhost.go index 30463940..57168b81 100644 --- a/internal/system/xhost.go +++ b/internal/system/xhost.go @@ -3,8 +3,8 @@ package system import ( "fmt" - "git.ophivana.moe/security/fortify/internal/fmsg" - "git.ophivana.moe/security/fortify/xcb" + "git.gensokyo.uk/security/fortify/internal/fmsg" + "git.gensokyo.uk/security/fortify/xcb" ) // ChangeHosts appends an X11 ChangeHosts command Op. |
