From 3aed05256724c75c04596187fb08f9c38a7bbadd Mon Sep 17 00:00:00 2001 From: nydragon Date: Wed, 12 Mar 2025 00:28:48 +0100 Subject: [PATCH] feat: socket activated rsyncd, rsyncb sends message on failure --- modules/programs/firefox.nix | 1 - options/server/rsync-daemon/default.nix | 1 + options/services/rsync-backup/default.nix | 11 +++++++++++ 3 files changed, 12 insertions(+), 1 deletion(-) diff --git a/modules/programs/firefox.nix b/modules/programs/firefox.nix index d3a5534..89df7ac 100644 --- a/modules/programs/firefox.nix +++ b/modules/programs/firefox.nix @@ -99,7 +99,6 @@ lib.mkIf config.programs.firefox.enable { builtins.listToAttrs [ (extension "ublock-origin" "uBlock0@raymondhill.net") (extension "firefox-translations" "firefox-translations-addon@mozilla.org") - (extension "private-relay" "private-relay@firefox.com") (extension "decentraleyes" "jid1-BoFifL9Vbdl2zQ@jetpack") (extension "keepassxc-browser" "keepassxc-browser@keepassxc.org") ]; diff --git a/options/server/rsync-daemon/default.nix b/options/server/rsync-daemon/default.nix index b040c99..b7d4ae7 100644 --- a/options/server/rsync-daemon/default.nix +++ b/options/server/rsync-daemon/default.nix @@ -80,6 +80,7 @@ in modules.fixes.services.rsyncd = { enable = true; + socketActivated = true; settings = { globalSection = { inherit (cfg) port address; diff --git a/options/services/rsync-backup/default.nix b/options/services/rsync-backup/default.nix index 77c3786..8cc4ef6 100644 --- a/options/services/rsync-backup/default.nix +++ b/options/services/rsync-backup/default.nix @@ -135,6 +135,17 @@ in unitConfig = { Description = "Backs up files from a source location to a specified destination."; }; + + postStop = '' + if [ "$SERVICE_RESULT" != "success" ]; then + ${pkgs.curl}/bin/curl \ + -H "Priority: urgent" \ + -H "Title: Backup error" \ + -d "Backup '${cfg.unitName}-${slugify mod.target.location}' had unexpected behaviour: $SERVICE_RESULT" \ + https://ntfy.ccnlc.eu/rsync-backup + fi + ''; + serviceConfig = { Type = "simple"; Restart = "on-failure";