feat: socket activated rsyncd, rsyncb sends message on failure
Some checks failed
/ test (push) Failing after 31m50s
Some checks failed
/ test (push) Failing after 31m50s
This commit is contained in:
parent
6cd5beda6a
commit
647aab5924
3 changed files with 12 additions and 1 deletions
|
@ -99,7 +99,6 @@ lib.mkIf config.programs.firefox.enable {
|
||||||
builtins.listToAttrs [
|
builtins.listToAttrs [
|
||||||
(extension "ublock-origin" "uBlock0@raymondhill.net")
|
(extension "ublock-origin" "uBlock0@raymondhill.net")
|
||||||
(extension "firefox-translations" "firefox-translations-addon@mozilla.org")
|
(extension "firefox-translations" "firefox-translations-addon@mozilla.org")
|
||||||
(extension "private-relay" "private-relay@firefox.com")
|
|
||||||
(extension "decentraleyes" "jid1-BoFifL9Vbdl2zQ@jetpack")
|
(extension "decentraleyes" "jid1-BoFifL9Vbdl2zQ@jetpack")
|
||||||
(extension "keepassxc-browser" "keepassxc-browser@keepassxc.org")
|
(extension "keepassxc-browser" "keepassxc-browser@keepassxc.org")
|
||||||
];
|
];
|
||||||
|
|
|
@ -80,6 +80,7 @@ in
|
||||||
|
|
||||||
modules.fixes.services.rsyncd = {
|
modules.fixes.services.rsyncd = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
socketActivated = true;
|
||||||
settings = {
|
settings = {
|
||||||
globalSection = {
|
globalSection = {
|
||||||
inherit (cfg) port address;
|
inherit (cfg) port address;
|
||||||
|
|
|
@ -135,6 +135,17 @@ in
|
||||||
unitConfig = {
|
unitConfig = {
|
||||||
Description = "Backs up files from a source location to a specified destination.";
|
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 = {
|
serviceConfig = {
|
||||||
Type = "simple";
|
Type = "simple";
|
||||||
Restart = "on-failure";
|
Restart = "on-failure";
|
||||||
|
|
Loading…
Add table
Reference in a new issue