2023-09-24 22:29:30 +00:00
|
|
|
{
|
2025-02-10 21:55:08 +00:00
|
|
|
liminix,
|
|
|
|
odhcp6c,
|
|
|
|
odhcp-script,
|
2023-09-24 22:29:30 +00:00
|
|
|
}:
|
2025-02-10 21:55:08 +00:00
|
|
|
{ interface }:
|
2023-09-24 22:29:30 +00:00
|
|
|
let
|
|
|
|
inherit (liminix.services) longrun;
|
|
|
|
name = "dhcp6c.${interface.name}";
|
2025-02-10 21:55:08 +00:00
|
|
|
in
|
|
|
|
longrun {
|
2023-09-24 22:29:30 +00:00
|
|
|
inherit name;
|
|
|
|
notification-fd = 10;
|
|
|
|
run = ''
|
2024-02-13 21:41:43 +00:00
|
|
|
export SERVICE_STATE=$SERVICE_OUTPUTS/${name}
|
2023-09-24 22:29:30 +00:00
|
|
|
${odhcp6c}/bin/odhcp6c -s ${odhcp-script} -e -v -p /run/${name}.pid -P0 $(output ${interface} ifname)
|
|
|
|
)
|
|
|
|
'';
|
|
|
|
dependencies = [ interface ];
|
|
|
|
}
|