Skip to content

Commit

Permalink
watchdog: init at 5.16
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
n8henrie committed Nov 1, 2024
1 parent a7b7cd7 commit bc7813e
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions pkgs/by-name/wa/watchdog/package.nix
Original file line number Diff line number Diff line change
@@ -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";
};
})

0 comments on commit bc7813e

Please sign in to comment.