From 18f414e474a968527361c5f197450ac8366a0584 Mon Sep 17 00:00:00 2001 From: Steven Tracey Date: Mon, 16 Mar 2026 23:03:08 +0100 Subject: [PATCH] [CI-SKIP] Fixed module name --- Makefile | 2 +- app/client/certs.go | 6 +++--- app/client/daemon.go | 6 +++--- app/client/grpc.go | 4 ++-- app/executor/executor.go | 2 +- app/executor/hook.go | 4 ++-- app/server/certs.go | 6 +++--- app/server/daemon.go | 6 +++--- app/shared/commands.go | 2 +- app/shared/config.go | 4 ++-- app/shared/daemon.go | 2 +- app/shared/util.go | 2 +- client/certificates.go | 2 +- client/git.go | 2 +- cmd/bundle/main.go | 4 ++-- cmd/client/commands.go | 4 ++-- cmd/client/main.go | 2 +- cmd/server/commands.go | 4 ++-- server/acme_manager.go | 2 +- 19 files changed, 33 insertions(+), 33 deletions(-) diff --git a/Makefile b/Makefile index 5a092c0..3f7b4d9 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION := 1.1.1-beta +VERSION := 1.1.2-beta BUILD := $(shell git rev-parse --short HEAD) GO := go diff --git a/app/client/certs.go b/app/client/certs.go index 03736e8..f8e3ce4 100644 --- a/app/client/certs.go +++ b/app/client/certs.go @@ -4,9 +4,9 @@ import ( "fmt" "path/filepath" - "git.nevets.tech/Keys/certman/app/shared" - "git.nevets.tech/Keys/certman/client" - "git.nevets.tech/Keys/certman/common" + "git.nevets.tech/Steven/certman/app/shared" + "git.nevets.tech/Steven/certman/client" + "git.nevets.tech/Steven/certman/common" "github.com/go-git/go-billy/v5/memfs" "github.com/go-git/go-git/v5/storage/memory" "github.com/spf13/cobra" diff --git a/app/client/daemon.go b/app/client/daemon.go index 3ea7947..0b0a29f 100644 --- a/app/client/daemon.go +++ b/app/client/daemon.go @@ -7,9 +7,9 @@ import ( "path/filepath" "strings" - appShared "git.nevets.tech/Keys/certman/app/shared" - "git.nevets.tech/Keys/certman/client" - "git.nevets.tech/Keys/certman/common" + appShared "git.nevets.tech/Steven/certman/app/shared" + "git.nevets.tech/Steven/certman/client" + "git.nevets.tech/Steven/certman/common" "github.com/go-git/go-billy/v5/memfs" "github.com/go-git/go-git/v5/storage/memory" ) diff --git a/app/client/grpc.go b/app/client/grpc.go index 47bd8ef..1d085d1 100644 --- a/app/client/grpc.go +++ b/app/client/grpc.go @@ -6,8 +6,8 @@ import ( "log" "time" - "git.nevets.tech/Keys/certman/app/shared" - pb "git.nevets.tech/Keys/certman/proto/v1" + "git.nevets.tech/Steven/certman/app/shared" + pb "git.nevets.tech/Steven/certman/proto/v1" "google.golang.org/grpc" "google.golang.org/grpc/credentials/insecure" ) diff --git a/app/executor/executor.go b/app/executor/executor.go index 1096307..b259cc8 100644 --- a/app/executor/executor.go +++ b/app/executor/executor.go @@ -5,7 +5,7 @@ import ( "net" "sync" - pb "git.nevets.tech/Keys/certman/proto/v1" + pb "git.nevets.tech/Steven/certman/proto/v1" "github.com/coreos/go-systemd/v22/activation" "google.golang.org/grpc" ) diff --git a/app/executor/hook.go b/app/executor/hook.go index 3f38baf..b46d1b0 100644 --- a/app/executor/hook.go +++ b/app/executor/hook.go @@ -8,8 +8,8 @@ import ( "syscall" "time" - "git.nevets.tech/Keys/certman/common" - pb "git.nevets.tech/Keys/certman/proto/v1" + "git.nevets.tech/Steven/certman/common" + pb "git.nevets.tech/Steven/certman/proto/v1" ) type hookServer struct { diff --git a/app/server/certs.go b/app/server/certs.go index 833adb9..6651342 100644 --- a/app/server/certs.go +++ b/app/server/certs.go @@ -5,9 +5,9 @@ import ( "path/filepath" "time" - "git.nevets.tech/Keys/certman/app/shared" - "git.nevets.tech/Keys/certman/common" - "git.nevets.tech/Keys/certman/server" + "git.nevets.tech/Steven/certman/app/shared" + "git.nevets.tech/Steven/certman/common" + "git.nevets.tech/Steven/certman/server" "github.com/go-git/go-billy/v5/memfs" "github.com/go-git/go-git/v5/storage/memory" "github.com/spf13/cobra" diff --git a/app/server/daemon.go b/app/server/daemon.go index 3f7ea95..140f5f8 100644 --- a/app/server/daemon.go +++ b/app/server/daemon.go @@ -7,9 +7,9 @@ import ( "sync" "time" - appShared "git.nevets.tech/Keys/certman/app/shared" - "git.nevets.tech/Keys/certman/common" - "git.nevets.tech/Keys/certman/server" + appShared "git.nevets.tech/Steven/certman/app/shared" + "git.nevets.tech/Steven/certman/common" + "git.nevets.tech/Steven/certman/server" "github.com/go-git/go-billy/v5/memfs" "github.com/go-git/go-git/v5/storage/memory" ) diff --git a/app/shared/commands.go b/app/shared/commands.go index fb0397a..c8f70ae 100644 --- a/app/shared/commands.go +++ b/app/shared/commands.go @@ -9,7 +9,7 @@ import ( "strconv" "strings" - "git.nevets.tech/Keys/certman/common" + "git.nevets.tech/Steven/certman/common" "github.com/spf13/cobra" ) diff --git a/app/shared/config.go b/app/shared/config.go index 45605d5..ddc0462 100644 --- a/app/shared/config.go +++ b/app/shared/config.go @@ -9,8 +9,8 @@ import ( "strings" "sync" - "git.nevets.tech/Keys/certman/common" - pb "git.nevets.tech/Keys/certman/proto/v1" + "git.nevets.tech/Steven/certman/common" + pb "git.nevets.tech/Steven/certman/proto/v1" "github.com/google/uuid" "github.com/pelletier/go-toml/v2" "github.com/spf13/viper" diff --git a/app/shared/daemon.go b/app/shared/daemon.go index c3ef705..0a26dbd 100644 --- a/app/shared/daemon.go +++ b/app/shared/daemon.go @@ -10,7 +10,7 @@ import ( "syscall" "time" - "git.nevets.tech/Keys/certman/common" + "git.nevets.tech/Steven/certman/common" "github.com/spf13/cobra" ) diff --git a/app/shared/util.go b/app/shared/util.go index 539b274..3ddbabe 100644 --- a/app/shared/util.go +++ b/app/shared/util.go @@ -5,7 +5,7 @@ import ( "os" "path/filepath" - "git.nevets.tech/Keys/certman/common" + "git.nevets.tech/Steven/certman/common" "github.com/spf13/cobra" ) diff --git a/client/certificates.go b/client/certificates.go index 29a953d..e39b099 100644 --- a/client/certificates.go +++ b/client/certificates.go @@ -7,7 +7,7 @@ import ( "path/filepath" "strings" - "git.nevets.tech/Keys/certman/common" + "git.nevets.tech/Steven/certman/common" ) func PullCerts(config *common.AppConfig, domainConfig *common.DomainConfig, gitWorkspace *common.GitWorkspace) error { diff --git a/client/git.go b/client/git.go index 98c09e2..be84706 100644 --- a/client/git.go +++ b/client/git.go @@ -7,7 +7,7 @@ import ( "path/filepath" "strings" - "git.nevets.tech/Keys/certman/common" + "git.nevets.tech/Steven/certman/common" ) func LocalCommitHash(domain string, certsDir string) (string, error) { diff --git a/cmd/bundle/main.go b/cmd/bundle/main.go index 993879e..22a19fa 100644 --- a/cmd/bundle/main.go +++ b/cmd/bundle/main.go @@ -4,8 +4,8 @@ import ( "fmt" "os" - "git.nevets.tech/Keys/certman/app/executor" - "git.nevets.tech/Keys/certman/app/shared" + "git.nevets.tech/Steven/certman/app/executor" + "git.nevets.tech/Steven/certman/app/shared" "github.com/spf13/cobra" ) diff --git a/cmd/client/commands.go b/cmd/client/commands.go index 2880bbe..1d4f090 100644 --- a/cmd/client/commands.go +++ b/cmd/client/commands.go @@ -1,8 +1,8 @@ package main import ( - "git.nevets.tech/Keys/certman/app/client" - "git.nevets.tech/Keys/certman/app/shared" + "git.nevets.tech/Steven/certman/app/client" + "git.nevets.tech/Steven/certman/app/shared" "github.com/spf13/cobra" ) diff --git a/cmd/client/main.go b/cmd/client/main.go index a9e43f5..f3a0e3e 100644 --- a/cmd/client/main.go +++ b/cmd/client/main.go @@ -4,7 +4,7 @@ import ( "fmt" "os" - "git.nevets.tech/Keys/certman/app/shared" + "git.nevets.tech/Steven/certman/app/shared" "github.com/spf13/cobra" ) diff --git a/cmd/server/commands.go b/cmd/server/commands.go index d2a0b5e..7c0e0c5 100644 --- a/cmd/server/commands.go +++ b/cmd/server/commands.go @@ -1,8 +1,8 @@ package main import ( - "git.nevets.tech/Keys/certman/app/server" - "git.nevets.tech/Keys/certman/app/shared" + "git.nevets.tech/Steven/certman/app/server" + "git.nevets.tech/Steven/certman/app/shared" "github.com/spf13/cobra" ) diff --git a/server/acme_manager.go b/server/acme_manager.go index d421961..aa0276a 100644 --- a/server/acme_manager.go +++ b/server/acme_manager.go @@ -16,7 +16,7 @@ import ( "sync" "time" - "git.nevets.tech/Keys/certman/common" + "git.nevets.tech/Steven/certman/common" "github.com/go-acme/lego/v4/certcrypto" "github.com/go-acme/lego/v4/certificate" "github.com/go-acme/lego/v4/lego"