switching hosting providers

This commit is contained in:
Kyle Isom 2020-11-26 20:09:37 -08:00
parent 027d0173bc
commit cb827169dc
28 changed files with 51 additions and 39 deletions

View File

@ -16,7 +16,7 @@ import (
"io" "io"
"sort" "sort"
"github.com/kisom/goutils/assert" "git.sr.ht/~kisom/goutils/assert"
"golang.org/x/crypto/blake2b" "golang.org/x/crypto/blake2b"
"golang.org/x/crypto/blake2s" "golang.org/x/crypto/blake2s"
"golang.org/x/crypto/md4" "golang.org/x/crypto/md4"

View File

@ -5,7 +5,7 @@ import (
"fmt" "fmt"
"testing" "testing"
"github.com/kisom/goutils/assert" "git.sr.ht/~kisom/goutils/assert"
) )
func TestSecureHash(t *testing.T) { func TestSecureHash(t *testing.T) {

View File

@ -7,7 +7,7 @@ import (
"fmt" "fmt"
"regexp" "regexp"
"github.com/kisom/goutils/die" "git.sr.ht/~kisom/goutils/die"
) )
var hasPort = regexp.MustCompile(`:\d+$`) var hasPort = regexp.MustCompile(`:\d+$`)

View File

@ -11,8 +11,8 @@ import (
"time" "time"
"github.com/cloudflare/cfssl/helpers" "github.com/cloudflare/cfssl/helpers"
"github.com/kisom/goutils/die" "git.sr.ht/~kisom/goutils/die"
"github.com/kisom/goutils/lib" "git.sr.ht/~kisom/goutils/lib"
) )
var warnOnly bool var warnOnly bool

View File

@ -10,8 +10,8 @@ import (
"github.com/cloudflare/cfssl/helpers" "github.com/cloudflare/cfssl/helpers"
"github.com/cloudflare/cfssl/revoke" "github.com/cloudflare/cfssl/revoke"
"github.com/kisom/goutils/die" "git.sr.ht/~kisom/goutils/die"
"github.com/kisom/goutils/lib" "git.sr.ht/~kisom/goutils/lib"
) )
func printRevocation(cert *x509.Certificate) { func printRevocation(cert *x509.Certificate) {

View File

@ -11,7 +11,7 @@ import (
"strings" "strings"
"sync" "sync"
"github.com/kisom/goutils/lib" "git.sr.ht/~kisom/goutils/lib"
"github.com/pkg/sftp" "github.com/pkg/sftp"
"golang.org/x/crypto/ssh" "golang.org/x/crypto/ssh"
"golang.org/x/crypto/ssh/agent" "golang.org/x/crypto/ssh/agent"

View File

@ -11,7 +11,7 @@ import (
"os" "os"
"path/filepath" "path/filepath"
"github.com/kisom/goutils/die" "git.sr.ht/~kisom/goutils/die"
) )
var ( var (

View File

@ -10,7 +10,7 @@ import (
"io/ioutil" "io/ioutil"
"log" "log"
"github.com/kisom/goutils/die" "git.sr.ht/~kisom/goutils/die"
) )
func main() { func main() {

View File

@ -9,7 +9,7 @@ import (
"path/filepath" "path/filepath"
"strconv" "strconv"
"github.com/kisom/goutils/die" "git.sr.ht/~kisom/goutils/die"
) )
func init() { func init() {

View File

@ -8,7 +8,7 @@ import (
"io/ioutil" "io/ioutil"
"os" "os"
"github.com/kisom/goutils/lib" "git.sr.ht/~kisom/goutils/lib"
) )
func prettify(file string, validateOnly bool) error { func prettify(file string, validateOnly bool) error {

View File

@ -11,7 +11,7 @@ import (
"sort" "sort"
"strings" "strings"
"github.com/kisom/goutils/die" "git.sr.ht/~kisom/goutils/die"
) )
const dbVersion = "1" const dbVersion = "1"

View File

@ -7,7 +7,7 @@ import (
"io/ioutil" "io/ioutil"
"os" "os"
"github.com/kisom/goutils/lib" "git.sr.ht/~kisom/goutils/lib"
) )
func main() { func main() {

View File

@ -8,9 +8,9 @@ import (
"io" "io"
"os" "os"
"github.com/kisom/goutils/assert" "git.sr.ht/~kisom/goutils/assert"
"github.com/kisom/goutils/die" "git.sr.ht/~kisom/goutils/die"
"github.com/kisom/goutils/lib" "git.sr.ht/~kisom/goutils/lib"
) )
func usage(w io.Writer) { func usage(w io.Writer) {

View File

@ -11,8 +11,8 @@ import (
"path/filepath" "path/filepath"
"strings" "strings"
"github.com/kisom/goutils/fileutil" "git.sr.ht/~kisom/goutils/fileutil"
"github.com/kisom/goutils/lib" "git.sr.ht/~kisom/goutils/lib"
) )
func hashName(path, encodedHash string) string { func hashName(path, encodedHash string) string {

View File

@ -9,9 +9,9 @@ import (
"os" "os"
"path/filepath" "path/filepath"
"github.com/kisom/goutils/ahash" "git.sr.ht/~kisom/goutils/ahash"
"github.com/kisom/goutils/die" "git.sr.ht/~kisom/goutils/die"
"github.com/kisom/goutils/lib" "git.sr.ht/~kisom/goutils/lib"
) )
func usage(w io.Writer) { func usage(w io.Writer) {

View File

@ -12,8 +12,8 @@ import (
"sort" "sort"
"strings" "strings"
"github.com/kisom/goutils/die" "git.sr.ht/~kisom/goutils/die"
"github.com/kisom/goutils/logging" "git.sr.ht/~kisom/goutils/logging"
) )
var ( var (

View File

@ -17,8 +17,8 @@ import (
"os" "os"
"strings" "strings"
"github.com/kisom/goutils/die" "git.sr.ht/~kisom/goutils/die"
"github.com/kisom/goutils/lib" "git.sr.ht/~kisom/goutils/lib"
) )
func usage(w io.Writer) { func usage(w io.Writer) {

View File

@ -6,7 +6,7 @@ import (
"log" "log"
"net" "net"
"github.com/kisom/goutils/die" "git.sr.ht/~kisom/goutils/die"
) )
func proxy(conn net.Conn, inside string) error { func proxy(conn net.Conn, inside string) error {

View File

@ -12,7 +12,7 @@ import (
"net" "net"
"os" "os"
"github.com/kisom/goutils/die" "git.sr.ht/~kisom/goutils/die"
) )
func main() { func main() {

View File

@ -10,7 +10,7 @@ import (
"net" "net"
"os" "os"
"github.com/kisom/goutils/die" "git.sr.ht/~kisom/goutils/die"
) )
func main() { func main() {

View File

@ -9,8 +9,8 @@ import (
"io" "io"
"os" "os"
"github.com/kisom/goutils/die" "git.sr.ht/~kisom/goutils/die"
"github.com/kisom/goutils/lib" "git.sr.ht/~kisom/goutils/lib"
) )
func init() { func init() {

View File

@ -15,7 +15,7 @@ import (
"log" "log"
"os" "os"
"github.com/kisom/goutils/die" "git.sr.ht/~kisom/goutils/die"
) )
var validPEMs = map[string]bool{ var validPEMs = map[string]bool{

View File

@ -5,7 +5,7 @@ import (
"os" "os"
"testing" "testing"
"github.com/kisom/goutils/testio" "git.sr.ht/~kisom/goutils/testio"
"github.com/stretchr/testify/require" "github.com/stretchr/testify/require"
) )

14
go.mod
View File

@ -1,3 +1,15 @@
module github.com/kisom/goutils module git.sr.ht/~kisom/goutils
go 1.13 go 1.13
require (
github.com/cloudflare/cfssl v1.5.0
github.com/kisom/goutils v1.1.0
github.com/kr/text v0.2.0
github.com/pkg/errors v0.9.1
github.com/pkg/sftp v1.12.0
github.com/stretchr/testify v1.6.1
golang.org/x/crypto v0.0.0-20201124201722-c8d3bf9c5392
golang.org/x/sys v0.0.0-20201126233918-771906719818
gopkg.in/yaml.v2 v2.4.0
)

View File

@ -4,7 +4,7 @@ import (
"fmt" "fmt"
"testing" "testing"
"github.com/kisom/goutils/assert" "git.sr.ht/~kisom/goutils/assert"
) )
// some CA certs I found on my computerbox. // some CA certs I found on my computerbox.

View File

@ -4,7 +4,7 @@ import (
"os" "os"
"time" "time"
"github.com/kisom/goutils/logging" "git.sr.ht/~kisom/goutils/logging"
) )
var log = logging.NewConsole() var log = logging.NewConsole()

View File

@ -3,7 +3,7 @@ package logging_test
import ( import (
"time" "time"
"github.com/kisom/goutils/logging" "git.sr.ht/~kisom/goutils/logging"
) )
var log = logging.NewConsole() var log = logging.NewConsole()

View File

@ -4,8 +4,8 @@ import (
"bytes" "bytes"
"testing" "testing"
"github.com/kisom/goutils/assert" "git.sr.ht/~kisom/goutils/assert"
"github.com/kisom/goutils/testio" "git.sr.ht/~kisom/goutils/testio"
) )
func TestMWC(t *testing.T) { func TestMWC(t *testing.T) {