Skip to content

Commit be40823

Browse files
authored
Merge pull request #182 from serokell/philtaken/checks-unique-names
More unique names for the checks generated by deploy-rs
2 parents b011f13 + 38d9005 commit be40823

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

flake.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,11 +101,11 @@
101101
};
102102

103103
deployChecks = deploy: builtins.mapAttrs (_: check: check deploy) {
104-
schema = deploy: final.runCommand "jsonschema-deploy-system" { } ''
104+
deploy-schema = deploy: final.runCommand "jsonschema-deploy-system" { } ''
105105
${final.python3.pkgs.jsonschema}/bin/jsonschema -i ${final.writeText "deploy.json" (builtins.toJSON deploy)} ${./interface.json} && touch $out
106106
'';
107107

108-
activate = deploy:
108+
deploy-activate = deploy:
109109
let
110110
profiles = builtins.concatLists (final.lib.mapAttrsToList (nodeName: node: final.lib.mapAttrsToList (profileName: profile: [ (toString profile.path) nodeName profileName ]) node.profiles) deploy.nodes);
111111
in

0 commit comments

Comments
 (0)