[CI-SKIP] Fixed module name
All checks were successful
Build (artifact) / build (push) Has been skipped
All checks were successful
Build (artifact) / build (push) Has been skipped
This commit is contained in:
2
Makefile
2
Makefile
@@ -1,4 +1,4 @@
|
|||||||
VERSION := 1.1.1-beta
|
VERSION := 1.1.2-beta
|
||||||
BUILD := $(shell git rev-parse --short HEAD)
|
BUILD := $(shell git rev-parse --short HEAD)
|
||||||
|
|
||||||
GO := go
|
GO := go
|
||||||
|
|||||||
@@ -4,9 +4,9 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
|
|
||||||
"git.nevets.tech/Keys/certman/app/shared"
|
"git.nevets.tech/Steven/certman/app/shared"
|
||||||
"git.nevets.tech/Keys/certman/client"
|
"git.nevets.tech/Steven/certman/client"
|
||||||
"git.nevets.tech/Keys/certman/common"
|
"git.nevets.tech/Steven/certman/common"
|
||||||
"github.com/go-git/go-billy/v5/memfs"
|
"github.com/go-git/go-billy/v5/memfs"
|
||||||
"github.com/go-git/go-git/v5/storage/memory"
|
"github.com/go-git/go-git/v5/storage/memory"
|
||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
|
|||||||
@@ -7,9 +7,9 @@ import (
|
|||||||
"path/filepath"
|
"path/filepath"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
appShared "git.nevets.tech/Keys/certman/app/shared"
|
appShared "git.nevets.tech/Steven/certman/app/shared"
|
||||||
"git.nevets.tech/Keys/certman/client"
|
"git.nevets.tech/Steven/certman/client"
|
||||||
"git.nevets.tech/Keys/certman/common"
|
"git.nevets.tech/Steven/certman/common"
|
||||||
"github.com/go-git/go-billy/v5/memfs"
|
"github.com/go-git/go-billy/v5/memfs"
|
||||||
"github.com/go-git/go-git/v5/storage/memory"
|
"github.com/go-git/go-git/v5/storage/memory"
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -6,8 +6,8 @@ import (
|
|||||||
"log"
|
"log"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"git.nevets.tech/Keys/certman/app/shared"
|
"git.nevets.tech/Steven/certman/app/shared"
|
||||||
pb "git.nevets.tech/Keys/certman/proto/v1"
|
pb "git.nevets.tech/Steven/certman/proto/v1"
|
||||||
"google.golang.org/grpc"
|
"google.golang.org/grpc"
|
||||||
"google.golang.org/grpc/credentials/insecure"
|
"google.golang.org/grpc/credentials/insecure"
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ import (
|
|||||||
"net"
|
"net"
|
||||||
"sync"
|
"sync"
|
||||||
|
|
||||||
pb "git.nevets.tech/Keys/certman/proto/v1"
|
pb "git.nevets.tech/Steven/certman/proto/v1"
|
||||||
"github.com/coreos/go-systemd/v22/activation"
|
"github.com/coreos/go-systemd/v22/activation"
|
||||||
"google.golang.org/grpc"
|
"google.golang.org/grpc"
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -8,8 +8,8 @@ import (
|
|||||||
"syscall"
|
"syscall"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"git.nevets.tech/Keys/certman/common"
|
"git.nevets.tech/Steven/certman/common"
|
||||||
pb "git.nevets.tech/Keys/certman/proto/v1"
|
pb "git.nevets.tech/Steven/certman/proto/v1"
|
||||||
)
|
)
|
||||||
|
|
||||||
type hookServer struct {
|
type hookServer struct {
|
||||||
|
|||||||
@@ -5,9 +5,9 @@ import (
|
|||||||
"path/filepath"
|
"path/filepath"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"git.nevets.tech/Keys/certman/app/shared"
|
"git.nevets.tech/Steven/certman/app/shared"
|
||||||
"git.nevets.tech/Keys/certman/common"
|
"git.nevets.tech/Steven/certman/common"
|
||||||
"git.nevets.tech/Keys/certman/server"
|
"git.nevets.tech/Steven/certman/server"
|
||||||
"github.com/go-git/go-billy/v5/memfs"
|
"github.com/go-git/go-billy/v5/memfs"
|
||||||
"github.com/go-git/go-git/v5/storage/memory"
|
"github.com/go-git/go-git/v5/storage/memory"
|
||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
|
|||||||
@@ -7,9 +7,9 @@ import (
|
|||||||
"sync"
|
"sync"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
appShared "git.nevets.tech/Keys/certman/app/shared"
|
appShared "git.nevets.tech/Steven/certman/app/shared"
|
||||||
"git.nevets.tech/Keys/certman/common"
|
"git.nevets.tech/Steven/certman/common"
|
||||||
"git.nevets.tech/Keys/certman/server"
|
"git.nevets.tech/Steven/certman/server"
|
||||||
"github.com/go-git/go-billy/v5/memfs"
|
"github.com/go-git/go-billy/v5/memfs"
|
||||||
"github.com/go-git/go-git/v5/storage/memory"
|
"github.com/go-git/go-git/v5/storage/memory"
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ import (
|
|||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"git.nevets.tech/Keys/certman/common"
|
"git.nevets.tech/Steven/certman/common"
|
||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
@@ -9,8 +9,8 @@ import (
|
|||||||
"strings"
|
"strings"
|
||||||
"sync"
|
"sync"
|
||||||
|
|
||||||
"git.nevets.tech/Keys/certman/common"
|
"git.nevets.tech/Steven/certman/common"
|
||||||
pb "git.nevets.tech/Keys/certman/proto/v1"
|
pb "git.nevets.tech/Steven/certman/proto/v1"
|
||||||
"github.com/google/uuid"
|
"github.com/google/uuid"
|
||||||
"github.com/pelletier/go-toml/v2"
|
"github.com/pelletier/go-toml/v2"
|
||||||
"github.com/spf13/viper"
|
"github.com/spf13/viper"
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ import (
|
|||||||
"syscall"
|
"syscall"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"git.nevets.tech/Keys/certman/common"
|
"git.nevets.tech/Steven/certman/common"
|
||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ import (
|
|||||||
"os"
|
"os"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
|
|
||||||
"git.nevets.tech/Keys/certman/common"
|
"git.nevets.tech/Steven/certman/common"
|
||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ import (
|
|||||||
"path/filepath"
|
"path/filepath"
|
||||||
"strings"
|
"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 {
|
func PullCerts(config *common.AppConfig, domainConfig *common.DomainConfig, gitWorkspace *common.GitWorkspace) error {
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ import (
|
|||||||
"path/filepath"
|
"path/filepath"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"git.nevets.tech/Keys/certman/common"
|
"git.nevets.tech/Steven/certman/common"
|
||||||
)
|
)
|
||||||
|
|
||||||
func LocalCommitHash(domain string, certsDir string) (string, error) {
|
func LocalCommitHash(domain string, certsDir string) (string, error) {
|
||||||
|
|||||||
@@ -4,8 +4,8 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"os"
|
"os"
|
||||||
|
|
||||||
"git.nevets.tech/Keys/certman/app/executor"
|
"git.nevets.tech/Steven/certman/app/executor"
|
||||||
"git.nevets.tech/Keys/certman/app/shared"
|
"git.nevets.tech/Steven/certman/app/shared"
|
||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"git.nevets.tech/Keys/certman/app/client"
|
"git.nevets.tech/Steven/certman/app/client"
|
||||||
"git.nevets.tech/Keys/certman/app/shared"
|
"git.nevets.tech/Steven/certman/app/shared"
|
||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"os"
|
"os"
|
||||||
|
|
||||||
"git.nevets.tech/Keys/certman/app/shared"
|
"git.nevets.tech/Steven/certman/app/shared"
|
||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"git.nevets.tech/Keys/certman/app/server"
|
"git.nevets.tech/Steven/certman/app/server"
|
||||||
"git.nevets.tech/Keys/certman/app/shared"
|
"git.nevets.tech/Steven/certman/app/shared"
|
||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ import (
|
|||||||
"sync"
|
"sync"
|
||||||
"time"
|
"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/certcrypto"
|
||||||
"github.com/go-acme/lego/v4/certificate"
|
"github.com/go-acme/lego/v4/certificate"
|
||||||
"github.com/go-acme/lego/v4/lego"
|
"github.com/go-acme/lego/v4/lego"
|
||||||
|
|||||||
Reference in New Issue
Block a user