diff options
author | Ismaël Bouya <ismael.bouya@normalesup.org> | 2019-05-24 14:43:09 +0200 |
---|---|---|
committer | Ismaël Bouya <ismael.bouya@normalesup.org> | 2019-05-24 14:45:37 +0200 |
commit | dbcba2ea2b7301aaa7e6487c2589b09ef09ba066 (patch) | |
tree | b4cd4b064468840e96757a55adbe9fd57a9d7904 /Makefile | |
parent | db4f87d640a090c4b469595737503f4189923c45 (diff) | |
download | Nix-dbcba2ea2b7301aaa7e6487c2589b09ef09ba066.tar.gz Nix-dbcba2ea2b7301aaa7e6487c2589b09ef09ba066.tar.zst Nix-dbcba2ea2b7301aaa7e6487c2589b09ef09ba066.zip |
Reorganize files
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..f4bb3f5 --- /dev/null +++ b/Makefile | |||
@@ -0,0 +1,20 @@ | |||
1 | subrecipes = setup ssh-eldiron info debug dry-run build upload deploy reboot push pull pull-deployment list-generations delete-generations cleanup | ||
2 | ${subrecipes}: | ||
3 | @$(MAKE) --no-print-directory -C nixops/ $@ | ||
4 | |||
5 | env: | ||
6 | ./scripts/make-env | ||
7 | |||
8 | env-dry-run: | ||
9 | ./scripts/make-env --dry-run | ||
10 | |||
11 | nix-info: | ||
12 | NIXOPS_DEPLOYMENT="" ./scripts/nix_infos | ||
13 | |||
14 | nix-info-nixops: | ||
15 | NIXOPS_DEPLOYMENT="n" ./scripts/nix_infos | ||
16 | |||
17 | nur: | ||
18 | ./scripts/make-nur | ||
19 | |||
20 | .PHONY: env env-dry-run nix-info nix-info-nixops | ||