Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change bitnami-labs links #6

Merged
merged 1 commit into from
Nov 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,19 @@ Set of Go tools to check different elements of your stack (SSL, SMTP, Permission
## Installation

```
$> go get github.com/bitnami-labs/healthcheck-tools/...
$> go get github.com/bitnami/healthcheck-tools/...
```

## Building from source

```
$> git clone https://github.com/bitnami-labs/healthcheck-tools.git
$> git clone https://github.com/bitnami/healthcheck-tools.git
$> make
```

## Basic usage

The tools are located in the *cmd* folder. Each tool has its own README.md with basic instructions.

- [SSL Checker](https://github.com/bitnami-labs/healthcheck-tools/tree/main/cmd/ssl-checker)
- [SMTP Checker](https://github.com/bitnami-labs/healthcheck-tools/tree/main/cmd/smtp-checker)
- [SSL Checker](https://github.com/bitnami/healthcheck-tools/tree/main/cmd/ssl-checker)
- [SMTP Checker](https://github.com/bitnami/healthcheck-tools/tree/main/cmd/smtp-checker)
4 changes: 2 additions & 2 deletions cmd/smtp-checker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ _smtp-checker_ performs a set of health checks in your web application to detect
## Installation

```
$> go get github.com/bitnami-labs/healthcheck-tools/cmd/smtp-checker
$> go get github.com/bitnami/healthcheck-tools/cmd/smtp-checker
```

## Building from source

```
$> git clone https://github.com/bitnami-labs/healthcheck-tools.git
$> git clone https://github.com/bitnami/healthcheck-tools.git
$> make smtp-checker-linux-amd64
```

Expand Down
2 changes: 1 addition & 1 deletion cmd/smtp-checker/apps/redmine/smtp_redmine.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package redmine
import (
"path/filepath"

"github.com/bitnami-labs/healthcheck-tools/cmd/smtp-checker/apps"
"github.com/bitnami/healthcheck-tools/cmd/smtp-checker/apps"
"github.com/juju/errors"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/smtp-checker/apps/redmine/smtp_redmine_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"os"
"testing"

"github.com/bitnami-labs/healthcheck-tools/cmd/smtp-checker/apps"
"github.com/bitnami/healthcheck-tools/cmd/smtp-checker/apps"
)

var testRedmineConfig = `
Expand Down
4 changes: 2 additions & 2 deletions cmd/smtp-checker/apps/wordpress/smtp-wordpress.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import (
"strconv"
"strings"

"github.com/bitnami-labs/healthcheck-tools/cmd/smtp-checker/apps"
"github.com/bitnami-labs/healthcheck-tools/pkg/mysql"
"github.com/bitnami/healthcheck-tools/cmd/smtp-checker/apps"
"github.com/bitnami/healthcheck-tools/pkg/mysql"
"github.com/juju/errors"
"github.com/yvasiyarov/php_session_decoder/php_serialize"
)
Expand Down
2 changes: 1 addition & 1 deletion cmd/smtp-checker/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"log"
"os"

"github.com/bitnami-labs/healthcheck-tools/cmd/smtp-checker/apps"
"github.com/bitnami/healthcheck-tools/cmd/smtp-checker/apps"
"github.com/mkmik/multierror"
)

Expand Down
6 changes: 3 additions & 3 deletions cmd/smtp-checker/smtpchecks.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ import (

"github.com/andybalholm/crlf"
"github.com/beevik/ntp"
"github.com/bitnami-labs/healthcheck-tools/cmd/smtp-checker/apps"
"github.com/bitnami-labs/healthcheck-tools/cmd/smtp-checker/apps/redmine"
"github.com/bitnami-labs/healthcheck-tools/cmd/smtp-checker/apps/wordpress"
"github.com/bitnami/healthcheck-tools/cmd/smtp-checker/apps"
"github.com/bitnami/healthcheck-tools/cmd/smtp-checker/apps/redmine"
"github.com/bitnami/healthcheck-tools/cmd/smtp-checker/apps/wordpress"
"github.com/juju/errors"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/smtp-checker/smtpchecks_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"strconv"
"testing"

"github.com/bitnami-labs/healthcheck-tools/cmd/smtp-checker/apps"
"github.com/bitnami/healthcheck-tools/cmd/smtp-checker/apps"
)

func TestRunTLSConnectivityChecks(t *testing.T) {
Expand Down
4 changes: 2 additions & 2 deletions cmd/ssl-checker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ _ssl-checker_ performs a set of health checks in your web application to detect
## Installation

```
$> go get github.com/bitnami-labs/healthcheck-tools/cmd/ssl-checker
$> go get github.com/bitnami/healthcheck-tools/cmd/ssl-checker
```

## Building from source

```
$> git clone https://github.com/bitnami-labs/healthcheck-tools.git
$> git clone https://github.com/bitnami/healthcheck-tools.git
$> make ssl-checker-linux-amd64
```

Expand Down
2 changes: 1 addition & 1 deletion cmd/ssl-checker/sslchecks.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"path"
"regexp"

"github.com/bitnami-labs/healthcheck-tools/pkg/apache"
"github.com/bitnami/healthcheck-tools/pkg/apache"
)

// CertificatePairInfo contains paths of an active certificate-key path
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/bitnami-labs/healthcheck-tools
module github.com/bitnami/healthcheck-tools

go 1.19

Expand Down
Loading