From bc7813e23410032e2e5f39a5828d9cdbe8870dba Mon Sep 17 00:00:00 2001 From: Nathan Henrie Date: Thu, 24 Oct 2024 15:32:31 -0600 Subject: [PATCH] watchdog: init at 5.16 This is the Linux software `watchdog` as packaged on Debian, Raspbian, and I believe Fedora. It has a number of configuration options not available with the systemd watchdog, including rebooting if unable to ping a specific host, if a specific network adapter fails, and can also perform custom tests and actions. --- pkgs/by-name/wa/watchdog/package.nix | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 pkgs/by-name/wa/watchdog/package.nix diff --git a/pkgs/by-name/wa/watchdog/package.nix b/pkgs/by-name/wa/watchdog/package.nix new file mode 100644 index 000000000000..3f94879716ae --- /dev/null +++ b/pkgs/by-name/wa/watchdog/package.nix @@ -0,0 +1,25 @@ +{ + lib, + stdenv, + fetchzip, +}: +stdenv.mkDerivation (finalAttrs: { + version = "5.16"; + pname = "watchdog"; + src = fetchzip { + url = "mirror://sourceforge/watchdog/watchdog-${finalAttrs.version}.tar.gz"; + hash = "sha256-ecXsnPvAhlRB8jiTgK+i1j6m/0idNqmzjSqi6UGCydE="; + }; + makeFlags = [ + "CONFIG_FILENAME:=${placeholder "out"}/etc/watchdog.conf" + ]; + + meta = { + description = "Software watchdog for Linux"; + homepage = "https://sourceforge.net/projects/watchdog/"; + license = lib.licenses.gpl2; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ n8henrie ]; + mainProgram = "watchdog"; + }; +})