2023-09-24 22:29:30 +00:00
|
|
|
{
|
2025-02-10 21:55:08 +00:00
|
|
|
liminix,
|
|
|
|
callPackage,
|
2023-09-24 22:29:30 +00:00
|
|
|
}:
|
2025-02-10 21:55:08 +00:00
|
|
|
{ client, interface }:
|
2023-09-24 22:29:30 +00:00
|
|
|
let
|
|
|
|
inherit (liminix.services) longrun;
|
|
|
|
name = "dhcp6c.prefix.${client.name}.${interface.name}";
|
2025-02-10 21:55:08 +00:00
|
|
|
script = callPackage ./acquire-delegated-prefix.nix { };
|
|
|
|
in
|
|
|
|
longrun {
|
2023-09-24 22:29:30 +00:00
|
|
|
inherit name;
|
2024-02-13 21:41:43 +00:00
|
|
|
run = "${script} $SERVICE_OUTPUTS/${client.name} $(output ${interface} ifname)";
|
2025-02-10 21:55:08 +00:00
|
|
|
dependencies = [
|
|
|
|
client
|
|
|
|
interface
|
|
|
|
];
|
2023-09-24 22:29:30 +00:00
|
|
|
}
|