2024-07-15 21:37:37 +00:00
|
|
|
## Round Robin
|
|
|
|
##
|
|
|
|
## Given a list of services, run each in turn until it exits, then
|
|
|
|
## runs the next.
|
|
|
|
|
2025-02-10 21:55:08 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
pkgs,
|
|
|
|
config,
|
|
|
|
...
|
|
|
|
}:
|
2024-07-15 21:37:37 +00:00
|
|
|
let
|
|
|
|
inherit (lib) mkOption types;
|
|
|
|
inherit (pkgs) liminix;
|
|
|
|
inherit (pkgs.liminix.services) longrun;
|
2025-02-10 21:55:08 +00:00
|
|
|
in
|
|
|
|
{
|
2024-07-15 21:37:37 +00:00
|
|
|
options = {
|
|
|
|
system.service.round-robin = mkOption {
|
|
|
|
description = "run services one at a time and failover to next";
|
|
|
|
type = liminix.lib.types.serviceDefn;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
config.system.service.round-robin = config.system.callService ./service.nix {
|
|
|
|
services = mkOption {
|
2025-02-10 21:55:08 +00:00
|
|
|
type = types.listOf liminix.lib.types.service;
|
2024-07-15 21:37:37 +00:00
|
|
|
};
|
2025-02-10 21:55:08 +00:00
|
|
|
name = mkOption {
|
2024-07-15 21:37:37 +00:00
|
|
|
type = types.str;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|