Skip to content

Commit

Permalink
chore: renamed fededp to falcosecurity.
Browse files Browse the repository at this point in the history
Signed-off-by: Federico Di Pierro <nierro92@gmail.com>
  • Loading branch information
FedeDP committed Sep 26, 2023
1 parent f4b5005 commit dc1af65
Show file tree
Hide file tree
Showing 37 changed files with 69 additions and 70 deletions.
2 changes: 1 addition & 1 deletion .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ signs:

kos:
- base_image: cgr.dev/chainguard/static
repository: ghcr.io/fededp/dbg-go
repository: ghcr.io/falcosecurity/dbg-go
bare: true
tags:
- '{{ .Version }}'
Expand Down
4 changes: 2 additions & 2 deletions cmd/build/build_configs.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package build

import (
"github.com/fededp/dbg-go/pkg/build"
"github.com/fededp/dbg-go/pkg/root"
"github.com/falcosecurity/dbg-go/pkg/build"
"github.com/falcosecurity/dbg-go/pkg/root"
"github.com/spf13/cobra"
"github.com/spf13/viper"
)
Expand Down
4 changes: 2 additions & 2 deletions cmd/cleanup/cleanup_configs.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package cleanup

import (
"github.com/fededp/dbg-go/pkg/cleanup"
"github.com/fededp/dbg-go/pkg/root"
"github.com/falcosecurity/dbg-go/pkg/cleanup"
"github.com/falcosecurity/dbg-go/pkg/root"
"github.com/spf13/cobra"
)

Expand Down
4 changes: 2 additions & 2 deletions cmd/cleanup/cleanup_drivers.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package cleanup

import (
"github.com/fededp/dbg-go/pkg/cleanup"
"github.com/fededp/dbg-go/pkg/root"
"github.com/falcosecurity/dbg-go/pkg/cleanup"
"github.com/falcosecurity/dbg-go/pkg/root"
"github.com/spf13/cobra"
)

Expand Down
10 changes: 5 additions & 5 deletions cmd/configs.go
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
package cmd

import (
"github.com/fededp/dbg-go/cmd/build"
"github.com/fededp/dbg-go/cmd/cleanup"
"github.com/fededp/dbg-go/cmd/generate"
"github.com/fededp/dbg-go/cmd/stats"
"github.com/fededp/dbg-go/cmd/validate"
"github.com/falcosecurity/dbg-go/cmd/build"
"github.com/falcosecurity/dbg-go/cmd/cleanup"
"github.com/falcosecurity/dbg-go/cmd/generate"
"github.com/falcosecurity/dbg-go/cmd/stats"
"github.com/falcosecurity/dbg-go/cmd/validate"
"github.com/spf13/cobra"
)

Expand Down
6 changes: 3 additions & 3 deletions cmd/drivers.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package cmd

import (
"github.com/fededp/dbg-go/cmd/cleanup"
"github.com/fededp/dbg-go/cmd/publish"
"github.com/fededp/dbg-go/cmd/stats"
"github.com/falcosecurity/dbg-go/cmd/cleanup"
"github.com/falcosecurity/dbg-go/cmd/publish"
"github.com/falcosecurity/dbg-go/cmd/stats"
"github.com/spf13/cobra"
)

Expand Down
4 changes: 2 additions & 2 deletions cmd/generate/generate_configs.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package generate

import (
"github.com/fededp/dbg-go/pkg/generate"
"github.com/fededp/dbg-go/pkg/root"
"github.com/falcosecurity/dbg-go/pkg/generate"
"github.com/falcosecurity/dbg-go/pkg/root"
"github.com/spf13/cobra"
"github.com/spf13/viper"
)
Expand Down
4 changes: 2 additions & 2 deletions cmd/publish/publish_drivers.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package publish

import (
"github.com/fededp/dbg-go/pkg/publish"
"github.com/fededp/dbg-go/pkg/root"
"github.com/falcosecurity/dbg-go/pkg/publish"
"github.com/falcosecurity/dbg-go/pkg/root"
"github.com/spf13/cobra"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ package cmd

import (
"fmt"
"github.com/falcosecurity/dbg-go/pkg/root"
"github.com/falcosecurity/driverkit/pkg/kernelrelease"
"github.com/fededp/dbg-go/pkg/root"
"github.com/spf13/cobra"
"github.com/spf13/viper"
"log"
Expand Down
4 changes: 2 additions & 2 deletions cmd/stats/stats_configs.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package stats

import (
"github.com/fededp/dbg-go/pkg/root"
"github.com/fededp/dbg-go/pkg/stats"
"github.com/falcosecurity/dbg-go/pkg/root"
"github.com/falcosecurity/dbg-go/pkg/stats"
"github.com/spf13/cobra"
)

Expand Down
4 changes: 2 additions & 2 deletions cmd/stats/stats_drivers.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package stats

import (
"github.com/fededp/dbg-go/pkg/root"
"github.com/fededp/dbg-go/pkg/stats"
"github.com/falcosecurity/dbg-go/pkg/root"
"github.com/falcosecurity/dbg-go/pkg/stats"
"github.com/spf13/cobra"
)

Expand Down
4 changes: 2 additions & 2 deletions cmd/validate/validate_configs.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package validate

import (
"github.com/fededp/dbg-go/pkg/root"
"github.com/fededp/dbg-go/pkg/validate"
"github.com/falcosecurity/dbg-go/pkg/root"
"github.com/falcosecurity/dbg-go/pkg/validate"
"github.com/spf13/cobra"
)

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/fededp/dbg-go
module github.com/falcosecurity/dbg-go

go 1.21

Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package main

import (
"github.com/fededp/dbg-go/cmd"
"github.com/falcosecurity/dbg-go/cmd"
"log/slog"
)

Expand Down
6 changes: 3 additions & 3 deletions pkg/build/build.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ package build

import (
"fmt"
"github.com/falcosecurity/dbg-go/pkg/root"
s3utils "github.com/falcosecurity/dbg-go/pkg/utils/s3"
"github.com/falcosecurity/dbg-go/pkg/validate"
"github.com/falcosecurity/driverkit/cmd"
"github.com/falcosecurity/driverkit/pkg/driverbuilder"
"github.com/fededp/dbg-go/pkg/root"
s3utils "github.com/fededp/dbg-go/pkg/utils/s3"
"github.com/fededp/dbg-go/pkg/validate"
"github.com/pkg/errors"
"gopkg.in/yaml.v3"
"log/slog"
Expand Down
8 changes: 4 additions & 4 deletions pkg/build/build_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ import (
"context"
"github.com/aws/aws-sdk-go-v2/aws"
"github.com/aws/aws-sdk-go-v2/service/s3"
"github.com/fededp/dbg-go/pkg/generate"
"github.com/fededp/dbg-go/pkg/root"
s3utils "github.com/fededp/dbg-go/pkg/utils/s3"
testutils "github.com/fededp/dbg-go/pkg/utils/test"
"github.com/falcosecurity/dbg-go/pkg/generate"
"github.com/falcosecurity/dbg-go/pkg/root"
s3utils "github.com/falcosecurity/dbg-go/pkg/utils/s3"
testutils "github.com/falcosecurity/dbg-go/pkg/utils/test"
"github.com/stretchr/testify/assert"
"os"
"path/filepath"
Expand Down
2 changes: 1 addition & 1 deletion pkg/build/types.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package build

import (
"github.com/falcosecurity/dbg-go/pkg/root"
"github.com/falcosecurity/driverkit/cmd"
"github.com/fededp/dbg-go/pkg/root"
)

type Options struct {
Expand Down
2 changes: 1 addition & 1 deletion pkg/cleanup/cleaner_file.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package cleanup

import (
"github.com/fededp/dbg-go/pkg/root"
"github.com/falcosecurity/dbg-go/pkg/root"
"os"
)

Expand Down
2 changes: 1 addition & 1 deletion pkg/cleanup/cleaner_s3.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"context"
"github.com/aws/aws-sdk-go-v2/aws"
"github.com/aws/aws-sdk-go-v2/service/s3"
s3utils "github.com/fededp/dbg-go/pkg/utils/s3"
s3utils "github.com/falcosecurity/dbg-go/pkg/utils/s3"
)

type s3Cleaner struct {
Expand Down
5 changes: 2 additions & 3 deletions pkg/cleanup/cleanup_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,8 @@ import (
"context"
"github.com/aws/aws-sdk-go-v2/aws"
"github.com/aws/aws-sdk-go-v2/service/s3"
"github.com/fededp/dbg-go/pkg/root"
s3utils "github.com/fededp/dbg-go/pkg/utils/s3"
"github.com/fededp/dbg-go/pkg/utils/test"
"github.com/falcosecurity/dbg-go/pkg/root"
s3utils "github.com/falcosecurity/dbg-go/pkg/utils/s3"
"github.com/stretchr/testify/assert"
"io"
"os"
Expand Down
2 changes: 1 addition & 1 deletion pkg/cleanup/types.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package cleanup

import "github.com/fededp/dbg-go/pkg/root"
import "github.com/falcosecurity/dbg-go/pkg/root"

type Options struct {
root.Options
Expand Down
4 changes: 2 additions & 2 deletions pkg/generate/generate.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ package generate
import (
"errors"
"fmt"
"github.com/falcosecurity/dbg-go/pkg/root"
"github.com/falcosecurity/dbg-go/pkg/validate"
"github.com/falcosecurity/driverkit/pkg/driverbuilder/builder"
"github.com/falcosecurity/driverkit/pkg/kernelrelease"
"github.com/fededp/dbg-go/pkg/root"
"github.com/fededp/dbg-go/pkg/validate"
json "github.com/json-iterator/go"
"golang.org/x/sync/errgroup"
"gopkg.in/yaml.v3"
Expand Down
6 changes: 3 additions & 3 deletions pkg/generate/generate_test.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package generate

import (
"github.com/fededp/dbg-go/pkg/root"
testutils "github.com/fededp/dbg-go/pkg/utils/test"
"github.com/fededp/dbg-go/pkg/validate"
"github.com/falcosecurity/dbg-go/pkg/root"
testutils "github.com/falcosecurity/dbg-go/pkg/utils/test"
"github.com/falcosecurity/dbg-go/pkg/validate"
"github.com/stretchr/testify/assert"
"os"
"testing"
Expand Down
2 changes: 1 addition & 1 deletion pkg/generate/types.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package generate

import (
"github.com/fededp/dbg-go/pkg/root"
"github.com/falcosecurity/dbg-go/pkg/root"
)

type Options struct {
Expand Down
4 changes: 2 additions & 2 deletions pkg/publish/publish.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package publish

import (
"github.com/fededp/dbg-go/pkg/root"
s3utils "github.com/fededp/dbg-go/pkg/utils/s3"
"github.com/falcosecurity/dbg-go/pkg/root"
s3utils "github.com/falcosecurity/dbg-go/pkg/utils/s3"
"log/slog"
)

Expand Down
6 changes: 3 additions & 3 deletions pkg/publish/publish_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import (
"context"
"github.com/aws/aws-sdk-go-v2/aws"
"github.com/aws/aws-sdk-go-v2/service/s3"
"github.com/fededp/dbg-go/pkg/root"
s3utils "github.com/fededp/dbg-go/pkg/utils/s3"
testutils "github.com/fededp/dbg-go/pkg/utils/test"
"github.com/falcosecurity/dbg-go/pkg/root"
s3utils "github.com/falcosecurity/dbg-go/pkg/utils/s3"
testutils "github.com/falcosecurity/dbg-go/pkg/utils/test"
"github.com/stretchr/testify/assert"
"os"
"testing"
Expand Down
2 changes: 1 addition & 1 deletion pkg/publish/types.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package publish

import "github.com/fededp/dbg-go/pkg/root"
import "github.com/falcosecurity/dbg-go/pkg/root"

type Options struct {
root.Options
Expand Down
6 changes: 3 additions & 3 deletions pkg/stats/stats_test.go
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package stats

import (
"github.com/falcosecurity/dbg-go/pkg/root"
testutils "github.com/falcosecurity/dbg-go/pkg/utils/test"
"github.com/falcosecurity/dbg-go/pkg/validate"
"github.com/falcosecurity/driverkit/pkg/kernelrelease"
"github.com/fededp/dbg-go/pkg/root"
testutils "github.com/fededp/dbg-go/pkg/utils/test"
"github.com/fededp/dbg-go/pkg/validate"
"github.com/stretchr/testify/assert"
"gopkg.in/yaml.v3"
"log"
Expand Down
4 changes: 2 additions & 2 deletions pkg/stats/statter_file.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package stats

import (
"github.com/fededp/dbg-go/pkg/root"
"github.com/fededp/dbg-go/pkg/validate"
"github.com/falcosecurity/dbg-go/pkg/root"
"github.com/falcosecurity/dbg-go/pkg/validate"
"github.com/pkg/errors"
"gopkg.in/yaml.v3"
"log/slog"
Expand Down
4 changes: 2 additions & 2 deletions pkg/stats/statter_s3.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package stats

import (
"github.com/fededp/dbg-go/pkg/root"
s3utils "github.com/fededp/dbg-go/pkg/utils/s3"
"github.com/falcosecurity/dbg-go/pkg/root"
s3utils "github.com/falcosecurity/dbg-go/pkg/utils/s3"
"log/slog"
"strings"
)
Expand Down
2 changes: 1 addition & 1 deletion pkg/stats/types.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package stats

import (
"github.com/fededp/dbg-go/pkg/root"
"github.com/falcosecurity/dbg-go/pkg/root"
)

type Options struct {
Expand Down
2 changes: 1 addition & 1 deletion pkg/utils/s3/s3utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"github.com/aws/aws-sdk-go-v2/aws"
"github.com/aws/aws-sdk-go-v2/service/s3"
"github.com/aws/aws-sdk-go-v2/service/s3/types"
"github.com/fededp/dbg-go/pkg/root"
"github.com/falcosecurity/dbg-go/pkg/root"
"io"
"log/slog"
"os"
Expand Down
4 changes: 2 additions & 2 deletions pkg/utils/test/test.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import (
"github.com/aws/aws-sdk-go-v2/config"
"github.com/aws/aws-sdk-go-v2/credentials"
"github.com/aws/aws-sdk-go-v2/service/s3"
"github.com/fededp/dbg-go/pkg/root"
s3utils "github.com/fededp/dbg-go/pkg/utils/s3"
"github.com/falcosecurity/dbg-go/pkg/root"
s3utils "github.com/falcosecurity/dbg-go/pkg/utils/s3"
"github.com/johannesboyne/gofakes3"
"github.com/johannesboyne/gofakes3/backend/s3mem"
json "github.com/json-iterator/go"
Expand Down
2 changes: 1 addition & 1 deletion pkg/validate/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ package validate

import (
"fmt"
"github.com/falcosecurity/dbg-go/pkg/root"
"github.com/falcosecurity/driverkit/pkg/kernelrelease"
"github.com/fededp/dbg-go/pkg/root"
"path/filepath"
"strings"
)
Expand Down
2 changes: 1 addition & 1 deletion pkg/validate/validate.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ package validate

import (
"encoding/base64"
"github.com/falcosecurity/dbg-go/pkg/root"
"github.com/falcosecurity/driverkit/pkg/kernelrelease"
"github.com/fededp/dbg-go/pkg/root"
"github.com/pkg/errors"
"gopkg.in/yaml.v3"
"log/slog"
Expand Down
4 changes: 2 additions & 2 deletions pkg/validate/validate_test.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package validate

import (
"github.com/fededp/dbg-go/pkg/root"
testutils "github.com/fededp/dbg-go/pkg/utils/test"
"github.com/falcosecurity/dbg-go/pkg/root"
testutils "github.com/falcosecurity/dbg-go/pkg/utils/test"
"github.com/stretchr/testify/assert"
"gopkg.in/yaml.v3"
"os"
Expand Down
Loading

0 comments on commit dc1af65

Please sign in to comment.