From 18576c4db42c5f16e75d91f759b0927ad6281caa Mon Sep 17 00:00:00 2001 From: Petr Hodina Date: Tue, 21 Dec 2021 22:20:27 +0100 Subject: gnu: Add watchdogd. * gnu/packages/linux.scm (watchdogd): New variable. Signed-off-by: Mathieu Othacehe --- gnu/packages/linux.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'gnu/packages/linux.scm') diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index bab88c7d88..11b89ed9a7 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -141,6 +141,7 @@ #: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 @@ dm-thin, dm-cache and dm-era device-mapper targets.") (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") -- cgit v1.2.3