Synapse cleanup, monitoring

This commit is contained in:
Kat Inskip 2023-07-29 12:37:48 -07:00
parent ab8885a907
commit d38cc5233f
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
8 changed files with 77 additions and 8 deletions

View file

@ -0,0 +1,11 @@
{
wrapShellScriptBin,
pkgs,
}:
wrapShellScriptBin "synapse-cleanup" ./cleanup.sh {
depsRuntimePath = with pkgs; [
matrix-synapse-tools.rust-synapse-compress-state
curl
jq
];
}