Skip to content

Commit 60af196

Browse files
committed
core: Renamed project to nagocheck
1 parent e193348 commit 60af196

26 files changed

+67
-44
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
nagopher-checks
1+
nagocheck
22
dist/
33

44
# Created by .ignore support plugin (hsz.mobi)

.goreleaser.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
builds:
22
- main: ./
3-
binary: nagopher-checks
3+
binary: nagocheck
44
flags: -a -tags netgo
55
ldflags: -s -w -X main.BuildVersion={{.Version}} -X main.BuildCommit={{.Commit}} -X main.BuildDate={{.Date}}
66

@@ -26,7 +26,7 @@ archive:
2626
nfpm:
2727
vendor: Pascal Mathis
2828
maintainer: Pascal Mathis <ppmathis@noreply.smx.li>
29-
homepage: https://github.com/snapserv/nagopher-checks
29+
homepage: https://github.com/snapserv/nagocheck
3030
description: Reliable and lightweight Nagios plugins written in Go
3131
license: GPL-3.0
3232
bindir: /usr/bin

.idea/copyright/GPL_3_0.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/markdown-exported-files.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

Lines changed: 3 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/nagocheck.iml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ GORELEASER = goreleaser
88
BUILD_DATE := $(shell date +'%Y-%m-%d_%H:%M:%S')
99
BUILD_COMMIT := $(shell git show -q --format='%H' HEAD)
1010

11-
PACKAGE = nagopher-checks
11+
PACKAGE = nagocheck
1212
TARGET = $(CURDIR)/$(PACKAGE)
1313
PKGS = $(shell $(GO) list ./... | grep -v "$(PACKAGE)/shared")
1414

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
# nagopher-checks
1+
# nagocheck
22

3-
[![Project Release](https://img.shields.io/github/release/snapserv/nagopher-checks.svg)](https://github.com/snapserv/nagopher-checks/releases/latest)
4-
[![Project License](https://img.shields.io/badge/license-GPL--3.0-blue.svg)](https://github.com/snapserv/nagopher-checks/LICENSE.txt)
3+
[![Project Release](https://img.shields.io/github/release/snapserv/nagocheck.svg)](https://github.com/snapserv/nagocheck/releases/latest)
4+
[![Project License](https://img.shields.io/badge/license-GPL--3.0-blue.svg)](https://github.com/snapserv/nagocheck/LICENSE.txt)
55
[![Go Version Compatibility](https://img.shields.io/badge/go_version-1.9_--_1.10-brightgreen.svg)](https://golang.org/)
6-
[![Travis CI Build Status](https://img.shields.io/travis/snapserv/nagopher-checks/master.svg)](https://travis-ci.org/snapserv/nagopher-checks)
7-
[![Coveralls Coverage Status](https://img.shields.io/coveralls/github/snapserv/nagopher-checks/master.svg)](https://coveralls.io/github/snapserv/nagopher-checks?branch=master)
6+
[![Travis CI Build Status](https://img.shields.io/travis/snapserv/nagocheck/master.svg)](https://travis-ci.org/snapserv/nagocheck)
7+
[![Coveralls Coverage Status](https://img.shields.io/coveralls/github/snapserv/nagocheck/master.svg)](https://coveralls.io/github/snapserv/nagocheck?branch=master)
88
[![Project Copyright](http://img.shields.io/badge/copyright-Pascal_Mathis-lightgrey.svg)](https://www.pascalmathis.com/)
99

1010
### Table of Contents

commands.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const nc_binary = "/usr/bin/nagopher-checks"
1+
const nc_binary = "/usr/bin/nagocheck"
22
const nc_base_args = {
33
"--verbose" = {
44
set_if = "$nc_verbose$"

0 commit comments

Comments
 (0)