From decc0e4576f645d8680ddd8c863e968e079462a2 Mon Sep 17 00:00:00 2001 From: sterni Date: Fri, 24 Jan 2025 20:54:10 +0100 Subject: [PATCH] fix(sterni/machines): adjust deploy script for nq >= 1.0 fq was renamed to nqtail, otherwise nothing changes for us. Change-Id: I3c40d0d0702e50b3421e320b5adf58a450303693 Reviewed-on: https://cl.tvl.fyi/c/depot/+/13052 Tested-by: BuildkiteCI Reviewed-by: sterni Autosubmit: sterni --- users/sterni/machines/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/users/sterni/machines/default.nix b/users/sterni/machines/default.nix index 291d9756c..7bf6db85d 100644 --- a/users/sterni/machines/default.nix +++ b/users/sterni/machines/default.nix @@ -1,7 +1,7 @@ { depot, lib, pkgs, ... }: let - bins = depot.nix.getBins pkgs.nq [ "fq" "nq" ]; + bins = depot.nix.getBins pkgs.nq [ "nqtail" "nq" ]; machines = lib.mapAttrs (name: _: @@ -35,7 +35,7 @@ let readonly DEPLOY_DRV="${ builtins.unsafeDiscardOutputDependency ( # Wrapper script around localDeployScriptFor that merely starts the - # local deploy script using and nq and then waits using fq. This means + # local deploy script using and nq and then waits using nqtail. This means # we can't Ctrl-C the deploy and it won't be terminated by a lost # connection. pkgs.writeShellScript "queue-deploy-${system.name}" '' @@ -45,7 +45,7 @@ let export NQDIR="$STATE_DIR" "${bins.nq}" "${localDeployScriptFor machine}" - "${bins.fq}" + "${bins.nqtail}" '' ).drvPath }"