we're moving away from "trigger" services to "controller" services, and "restart-on-upgrade" is the name used by s6-rc
17 lines
310 B
Nix
17 lines
310 B
Nix
{ ifwait, liminix } :
|
|
{
|
|
state
|
|
, interface
|
|
, service
|
|
}:
|
|
let
|
|
inherit (liminix.services) longrun;
|
|
in longrun {
|
|
name = "ifwait.${interface.name}";
|
|
buildInputs = [ service ];
|
|
restart-on-upgrade = true;
|
|
run = ''
|
|
${ifwait}/bin/ifwait -s ${service.name} $(output ${interface} ifname) ${state}
|
|
'';
|
|
}
|