Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/activation/activation.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import (
"fmt"
"os"

"github.com/coreos/go-systemd/v22/activation"
"github.com/huntresslabs/go-systemd/activation"
)

func fixListenPid() {
Expand Down
2 changes: 1 addition & 1 deletion examples/activation/httpserver/httpserver.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (
"io"
"net/http"

"github.com/coreos/go-systemd/v22/activation"
"github.com/huntresslabs/go-systemd/activation"
)

func HelloServer(w http.ResponseWriter, req *http.Request) {
Expand Down
2 changes: 1 addition & 1 deletion examples/activation/listen.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import (
"fmt"
"os"

"github.com/coreos/go-systemd/v22/activation"
"github.com/huntresslabs/go-systemd/activation"
)

func fixListenPid() {
Expand Down
2 changes: 1 addition & 1 deletion examples/activation/udpconn.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import (
"net"
"os"

"github.com/coreos/go-systemd/v22/activation"
"github.com/huntresslabs/go-systemd/activation"
)

func fixListenPid() {
Expand Down
2 changes: 1 addition & 1 deletion examples/journal/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (
"fmt"
"os"

"github.com/coreos/go-systemd/v22/journal"
"github.com/huntresslabs/go-systemd/journal"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/coreos/go-systemd/v22
module github.com/huntresslabs/go-systemd

go 1.23

Expand Down
2 changes: 1 addition & 1 deletion journal/journal_unix_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import (
"syscall"
"testing"

"github.com/coreos/go-systemd/v22/journal"
"github.com/huntresslabs/go-systemd/journal"
)

func TestJournalStreamParsing(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion machine1/dbus.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import (

"github.com/godbus/dbus/v5"

sd_dbus "github.com/coreos/go-systemd/v22/dbus"
sd_dbus "github.com/huntresslabs/go-systemd/dbus"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion machine1/dbus_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ import (
"testing"
"time"

sd_dbus "github.com/coreos/go-systemd/v22/dbus"
"github.com/godbus/dbus/v5"
sd_dbus "github.com/huntresslabs/go-systemd/dbus"
)

const (
Expand Down
67 changes: 0 additions & 67 deletions sdjournal/functions.go

This file was deleted.

35 changes: 0 additions & 35 deletions sdjournal/functions_test.go

This file was deleted.

2 changes: 1 addition & 1 deletion sdjournal/journal_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import (
"testing"
"time"

"github.com/coreos/go-systemd/v22/journal"
"github.com/huntresslabs/go-systemd/journal"
)

func newJournal(t *testing.T) *Journal {
Expand Down
2 changes: 1 addition & 1 deletion util/util_cgo.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ import (
"syscall"
"unsafe"

"github.com/coreos/go-systemd/v22/internal/dlopen"
"github.com/huntresslabs/go-systemd/internal/dlopen"
)

var libsystemdNames = []string{
Expand Down