Skip to content

Commit 9529d05

Browse files
committed
chore: module path github.com/nnosal/dbdeployer (fork-only, for go: backend install)
PR #136 (fix/postgres-sandbox-flags) keeps the upstream module path github.com/ProxySQL/dbdeployer so it merges cleanly. This branch rewrites the module path + all internal imports to github.com/nnosal/dbdeployer so mise's go: backend can install the fork: go:github.com/nnosal/dbdeployer@<tag>. Drop this branch once PR #136 is merged+released upstream.
1 parent b03e923 commit 9529d05

118 files changed

Lines changed: 301 additions & 301 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

abbreviations/abbreviations.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ package abbreviations
1717

1818
import (
1919
"fmt"
20-
"github.com/ProxySQL/dbdeployer/common"
20+
"github.com/nnosal/dbdeployer/common"
2121
"os"
2222
"regexp"
2323
"strings"

abbreviations/abbreviations_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
package abbreviations
1717

1818
import (
19-
"github.com/ProxySQL/dbdeployer/common"
20-
"github.com/ProxySQL/dbdeployer/compare"
19+
"github.com/nnosal/dbdeployer/common"
20+
"github.com/nnosal/dbdeployer/compare"
2121
"os"
2222
"testing"
2323
)

admin/actions.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"os/exec"
77
"path/filepath"
88

9-
"github.com/ProxySQL/dbdeployer/defaults"
9+
"github.com/nnosal/dbdeployer/defaults"
1010
)
1111

1212
// ExecuteSandboxScript runs a lifecycle script (start, stop, restart) in a sandbox directory.

admin/sandbox_status.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import (
99
"strings"
1010
"syscall"
1111

12-
"github.com/ProxySQL/dbdeployer/common"
13-
"github.com/ProxySQL/dbdeployer/defaults"
12+
"github.com/nnosal/dbdeployer/common"
13+
"github.com/nnosal/dbdeployer/defaults"
1414
)
1515

1616
// SandboxStatus represents a sandbox with its current running status.

cmd/admin.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ package cmd
1717

1818
import (
1919
"fmt"
20-
"github.com/ProxySQL/dbdeployer/admin"
21-
"github.com/ProxySQL/dbdeployer/defaults"
20+
"github.com/nnosal/dbdeployer/admin"
21+
"github.com/nnosal/dbdeployer/defaults"
2222
"os"
2323
"path"
2424
"sort"
2525

26-
"github.com/ProxySQL/dbdeployer/common"
27-
"github.com/ProxySQL/dbdeployer/globals"
28-
"github.com/ProxySQL/dbdeployer/sandbox"
26+
"github.com/nnosal/dbdeployer/common"
27+
"github.com/nnosal/dbdeployer/globals"
28+
"github.com/nnosal/dbdeployer/sandbox"
2929
"github.com/pkg/errors"
3030
"github.com/spf13/cobra"
3131
)

cmd/admin_default_sandbox.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ import (
2323

2424
"github.com/spf13/cobra"
2525

26-
"github.com/ProxySQL/dbdeployer/common"
27-
"github.com/ProxySQL/dbdeployer/defaults"
28-
"github.com/ProxySQL/dbdeployer/globals"
26+
"github.com/nnosal/dbdeployer/common"
27+
"github.com/nnosal/dbdeployer/defaults"
28+
"github.com/nnosal/dbdeployer/globals"
2929
)
3030

3131
var defaultsExecutableTemplate = `#!{{.ShellPath}}

cmd/cookbook.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ import (
1919
"fmt"
2020
"os"
2121

22-
"github.com/ProxySQL/dbdeployer/cookbook"
23-
"github.com/ProxySQL/dbdeployer/globals"
22+
"github.com/nnosal/dbdeployer/cookbook"
23+
"github.com/nnosal/dbdeployer/globals"
2424
"github.com/spf13/cobra"
2525
)
2626

cmd/data_load.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ import (
2323
"github.com/dustin/go-humanize"
2424
"github.com/spf13/cobra"
2525

26-
"github.com/ProxySQL/dbdeployer/common"
27-
"github.com/ProxySQL/dbdeployer/data_load"
28-
"github.com/ProxySQL/dbdeployer/defaults"
29-
"github.com/ProxySQL/dbdeployer/globals"
26+
"github.com/nnosal/dbdeployer/common"
27+
"github.com/nnosal/dbdeployer/data_load"
28+
"github.com/nnosal/dbdeployer/defaults"
29+
"github.com/nnosal/dbdeployer/globals"
3030
)
3131

3232
func listArchives(cmd *cobra.Command, args []string) error {

cmd/defaults.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ import (
2020
"regexp"
2121

2222
"github.com/alexeyco/simpletable"
23-
"github.com/ProxySQL/dbdeployer/ops"
23+
"github.com/nnosal/dbdeployer/ops"
2424

25-
"github.com/ProxySQL/dbdeployer/globals"
25+
"github.com/nnosal/dbdeployer/globals"
2626
"github.com/spf13/cobra"
2727

28-
"github.com/ProxySQL/dbdeployer/common"
29-
"github.com/ProxySQL/dbdeployer/defaults"
28+
"github.com/nnosal/dbdeployer/common"
29+
"github.com/nnosal/dbdeployer/defaults"
3030
)
3131

3232
func showDefaults(cmd *cobra.Command, args []string) {

cmd/delete.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ import (
2121
"os"
2222
"path"
2323

24-
"github.com/ProxySQL/dbdeployer/common"
25-
"github.com/ProxySQL/dbdeployer/concurrent"
26-
"github.com/ProxySQL/dbdeployer/defaults"
27-
"github.com/ProxySQL/dbdeployer/globals"
28-
"github.com/ProxySQL/dbdeployer/sandbox"
24+
"github.com/nnosal/dbdeployer/common"
25+
"github.com/nnosal/dbdeployer/concurrent"
26+
"github.com/nnosal/dbdeployer/defaults"
27+
"github.com/nnosal/dbdeployer/globals"
28+
"github.com/nnosal/dbdeployer/sandbox"
2929
"github.com/spf13/cobra"
3030
)
3131

0 commit comments

Comments
 (0)