fix: use unescaped %I in ntfy failure notification script

%i passes the escaped unit name which systemctl status cannot resolve,
causing "Failed to mangle name" errors.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Harald Hoyer 2026-04-01 15:37:49 +02:00
parent a6736c2ac1
commit 60ed46689c

View file

@ -117,7 +117,7 @@ in
${cfg.ntfy.url}/${cfg.ntfy.topic}
'';
};
scriptArgs = "%i";
scriptArgs = "%I";
};
})
]);