rename isTrigger to restart-on-upgrade

we're moving away from "trigger" services to "controller" services,
and "restart-on-upgrade" is the name used by s6-rc
This commit is contained in:
Daniel Barlow
2024-06-16 12:58:06 +01:00
parent c4185617c0
commit 7c9c801afc
3 changed files with 5 additions and 5 deletions

View File

@@ -9,7 +9,7 @@ let
in longrun {
name = "ifwait.${interface.name}";
buildInputs = [ service ];
isTrigger = true;
restart-on-upgrade = true;
run = ''
${ifwait}/bin/ifwait -s ${service.name} $(output ${interface} ifname) ${state}
'';

View File

@@ -19,6 +19,6 @@ let
termsString = stringify terms;
in longrun {
name = "watch-for-${serviceName}";
isTrigger = true;
restart-on-upgrade = true;
run = "${uevent-watch}/bin/uevent-watch ${if symlink != null then "-n ${symlink}" else ""} -s ${serviceName} ${termsString}";
}