gnu: Add watchdogd.

* gnu/packages/linux.scm (watchdogd): New variable.

Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
This commit is contained in:
Petr Hodina 2021-12-21 22:20:27 +01:00 committed by Mathieu Othacehe
parent 00cf011a83
commit 18576c4db4
No known key found for this signature in database
GPG key ID: 8354763531769CA6

View file

@ -141,6 +141,7 @@ (define-module (gnu packages linux)
#:use-module (gnu packages slang)
#:use-module (gnu packages sqlite)
#:use-module (gnu packages texinfo)
#:use-module (gnu packages textutils)
#:use-module (gnu packages tls)
#:use-module (gnu packages valgrind)
#:use-module (gnu packages video)
@ -4123,6 +4124,29 @@ (define-public thin-provisioning-tools
(home-page "https://github.com/jthornber/thin-provisioning-tools")
(license license:gpl3+)))
(define-public watchdogd
(package
(name "watchdogd")
(version "3.5")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/troglobit/watchdogd")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32
"05f7igavzimfgbh39fflbkmpya12r854n03dkyimwashcqwchx8f"))))
(build-system gnu-build-system)
(native-inputs (list autoconf automake libtool pkg-config))
(inputs (list libconfuse libite libuev))
(synopsis "Advanced system & process supervisor for Linux")
(description "This package provides an advanced monitor of critical system
resources, supervises the heartbeat of processes, records deadline
transgressions, and initiates a controlled reset if needed")
(home-page "https://troglobit.com/projects/watchdogd/")
(license license:isc)))
(define-public wireless-tools
(package
(name "wireless-tools")