1
0
Fork 0

mediaserver: wip tubearchivist

This commit is contained in:
Daniel Kempkens 2023-04-20 16:24:18 +02:00
parent 553d150651
commit e76df8b8fb
Signed by: daniel
SSH key fingerprint: SHA256:Ks/MyhQYcPRQiwMKLAKquWCdCPe3JXlb1WttgnAoSeM

View file

@ -4,7 +4,7 @@
systemd.tmpfiles.rules = [
"d /var/lib/tubearchivist 0755 root root"
"d /var/lib/tubearchivist/redis 0755 root root"
"d /var/lib/tubearchivist/es 0755 root root"
"d /var/lib/tubearchivist/es 0755 1000 root"
];
virtualisation.oci-containers.containers = {
@ -36,14 +36,14 @@
};
systemd.services.podman-tubearchivist.serviceConfig = {
TimeoutStopSec = lib.mkForce 5;
TimeoutStopSec = lib.mkForce 30;
};
systemd.services.podman-archivist-redis.serviceConfig = {
TimeoutStopSec = lib.mkForce 10;
TimeoutStopSec = lib.mkForce 30;
};
systemd.services.podman-archivist-es.serviceConfig = {
TimeoutStopSec = lib.mkForce 20;
TimeoutStopSec = lib.mkForce 30;
};
}