check-openvpn: init at 0.0.1 (#69301)

* check-openvpn: init at 0.0.1
This commit is contained in:
Peter Hoeg 2019-09-24 14:53:21 +08:00 committed by GitHub
parent 646dd55d16
commit 5426932f7c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{ lib, fetchFromGitHub, python3Packages }:
python3Packages.buildPythonApplication rec {
pname = "check-openvpn";
version = "0.0.1";
src = fetchFromGitHub {
owner = "liquidat";
repo = "nagios-icinga-openvpn";
rev = version;
sha256 = "1vz3p7nckc5k5f06nm1xfzpykhyndh2dzyagmifrzg5k478p1lpm";
};
# no tests
doCheck = false;
meta = with lib; {
description = "A nagios/icinga/sensu check plugin for OpenVPN";
license = licenses.mit;
maintainers = with maintainers; [ peterhoeg ];
};
}

View file

@ -14967,6 +14967,8 @@ in
check-nwc-health
check-ups-health;
check-openvpn = callPackage ../servers/monitoring/plugins/openvpn.nix { };
checkSSLCert = callPackage ../servers/monitoring/nagios/plugins/check_ssl_cert.nix { };
neo4j = callPackage ../servers/nosql/neo4j { };